Coinbase Wallet SDK (formerly WalletLink) lets developers connect their dapps to Coinbase Wallet on both mobile web (for iOS and Android) and desktop:
-
Mobile: Users can connect to your mobile web dapp through a deeplink to the dapp browser in Coinbase Wallet Mobile App.
-
Desktop: Users can connect to your desktop app with a QR code in the Coinbase Wallet Mobile App or with the Coinbase Wallet Chrome Extension.
Wallet SDK is open-source and uses minimal dependencies for maximum security and no code bloat. Simply drop a few lines of code into your dapp and Wallet SDK takes care of the rest.
- This readme contains brief instructions to get up and running.
- Visit our public developer docs for more detail, including samples for integrating Coinbase Wallet using libraries like web3-react, web3modal, Web3-Onboard, and wagmi.
The installation package for Coinbase Wallet SDK (formerly WalletLink) is now named
@coinbase/wallet-sdk
.
Install Coinbase Wallet SDK with yarn or npm.
- Check available versions of Wallet SDK.
yarn info @coinbase/wallet-sdk versions
- Install a specific version or the latest version.
#yarn add @coinbase/[email protected]
yarn add @coinbase/wallet-sdk
- Check your installed version.
yarn list @coinbase/wallet-sdk
- Check available versions of Wallet SDK.
npm view @coinbase/wallet-sdk versions
- Install a specific version or the latest version.
#npm install @coinbase/[email protected]
npm install @coinbase/wallet-sdk
- Check your installed version.
npm list @coinbase/wallet-sdk
Upgrade Coinbase Wallet SDK with yarn or npm.
- Compare your installed version of Coinbase Wallet SDK with the latest available version.
yarn outdated @coinbase/wallet-sdk
- Update Coinbase Wallet SDK to the latest.
yarn upgrade @coinbase/wallet-sdk --latest
- Compare your installed version of Coinbase Wallet SDK with the latest available version.
npm outdated @coinbase/wallet-sdk
- If necessary, update
package.json
with the latest major version.
{
"dependencies": {
"@coinbase/wallet-sdk": "^3.0.0"
}
}
- Update Coinbase Wallet SDK to the latest available version.
npm update @coinbase/wallet-sdk
Copyright © 2018-2022 Coinbase, Inc. <https://www.coinbase.com/>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
- Eth-json-rpc-filters under the ISC license
- Safe-event-emitter under the ISC license
- Json-rpc-engine under the ISC license
- Eth-rpc-errors under the MIT license
- Eth-block-tracker under the MIT license