-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2790b35
commit 0f4472b
Showing
3 changed files
with
19 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
/node_modules | ||
/docs/dist | ||
/docs/dist |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,61 +1,32 @@ | ||
# Install | ||
|
||
Smart Wallet is accessible to developers through the [Coinbase Wallet SDK](https://github.com/coinbase/coinbase-wallet-sdk), versions `4.0` and later. | ||
Today, there are release candidate versions (labeled `-rc.XX`) and beta versions (labeled `-beta.XX`). | ||
|
||
:::warning | ||
**IMPORTANT** | ||
|
||
Smart Wallet is not yet publicly launched on mainnet networks. Read about the current SDK versions below | ||
and reach out on [Discord](https://discord.com/invite/cdp/) in the `#smart-wallet` channel if you have questions. | ||
|
||
Public mainnet launch is expected to occur by early June. | ||
::: | ||
|
||
### Release Candidate | ||
:::code-group | ||
|
||
```bash [npm] | ||
npm i @coinbase/wallet-sdk@4.0.0-rc.1 | ||
npm i @coinbase/wallet-sdk@4.0.0 | ||
``` | ||
|
||
```bash [pnpm] | ||
pnpm i @coinbase/wallet-sdk@4.0.0-rc.1 | ||
pnpm i @coinbase/wallet-sdk@4.0.0 | ||
``` | ||
|
||
```bash [yarn] | ||
yarn add @coinbase/wallet-sdk@4.0.0-rc.1 | ||
yarn add @coinbase/wallet-sdk@4.0.0 | ||
``` | ||
|
||
```bash [bun] | ||
bun i @coinbase/wallet-sdk@4.0.0-rc.1 | ||
bun i @coinbase/wallet-sdk@4.0.0 | ||
``` | ||
::: | ||
|
||
- Intended for production environments. | ||
- Allows developers to see Smart Wallet option on `keys.coinbase.com` popup when app running on `localhost`. | ||
- Before public mainnet launch, will *not* show Smart Wallet option on `keys.coinbase.com` popup when app *not* running on `localhost`. | ||
- Allows using Smart Wallet on mainnet networks. | ||
|
||
### Beta | ||
:::code-group | ||
|
||
```bash [npm] | ||
npm i @coinbase/wallet-sdk@4.0.0-beta.12 | ||
``` | ||
|
||
```bash [pnpm] | ||
pnpm i @coinbase/wallet-sdk@4.0.0-beta.12 | ||
``` | ||
:::warning | ||
**IMPORTANT** | ||
|
||
```bash [yarn] | ||
yarn add @coinbase/wallet-sdk@4.0.0-beta.12 | ||
``` | ||
|
||
```bash [bun] | ||
bun i @coinbase/wallet-sdk@4.0.0-beta.12 | ||
``` | ||
::: | ||
- Intended for local testing or demo testnet apps. | ||
- Based on [config](/sdk/setup), can show Smart Wallet option on `keys.coinbase.com` popup, `localhost` or not. | ||
- Only allows using Smart Wallet on testnets (currently just Base Sepolia). | ||
Smart Wallet is not yet publicly launched on mainnet networks. Read about the current SDK versions below | ||
and reach out on [Discord](https://discord.com/invite/cdp/) in the `#smart-wallet` channel if you have questions. | ||
|
||
Public mainnet launch is expected to occur by early June. | ||
::: |