-
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.
add beta explanation back to install section
- Loading branch information
1 parent
0f4472b
commit a2b5345
Showing
4 changed files
with
59 additions
and
20 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
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
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,32 +1,62 @@ | ||
# Install | ||
# Installation | ||
|
||
Smart Wallet is accessible to developers through the [Coinbase Wallet SDK](https://github.com/coinbase/coinbase-wallet-sdk), versions `4.0` and later. | ||
:::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. | ||
::: | ||
|
||
## Latest | ||
:::code-group | ||
|
||
```bash [npm] | ||
npm i @coinbase/wallet-sdk@4.0.0 | ||
``` | ||
|
||
```bash [pnpm] | ||
pnpm i @coinbase/wallet-sdk@4.0.0 | ||
``` | ||
|
||
```bash [yarn] | ||
yarn add @coinbase/wallet-sdk@4.0.0 | ||
``` | ||
|
||
```bash [bun] | ||
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 `'smartWalletOnly'` is used. | ||
- [Wagmi example](/guides/create-app/using-wagmi#4-update-the-wagmi-config-and-coinbasewallet-connector-to-use-basesepolia) | ||
- [Direct dependency example](/sdk/makeWeb3Provider#usage) | ||
- Before public mainnet launch | ||
- Will *not* show Smart Wallet option on `keys.coinbase.com` popup when `'smartWalletOnly'` is not used. | ||
- Will allow Smart Wallet usage on Base Sepolia only. | ||
|
||
:::warning | ||
**IMPORTANT** | ||
## Beta | ||
:::code-group | ||
|
||
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. | ||
```bash [npm] | ||
npm i @coinbase/wallet-sdk@4.0.0-beta.14 | ||
``` | ||
|
||
Public mainnet launch is expected to occur by early June. | ||
::: | ||
```bash [pnpm] | ||
pnpm i @coinbase/wallet-sdk@4.0.0-beta.14 | ||
``` | ||
|
||
```bash [yarn] | ||
yarn add @coinbase/wallet-sdk@4.0.0-beta.14 | ||
``` | ||
|
||
```bash [bun] | ||
bun i @coinbase/wallet-sdk@4.0.0-beta.14 | ||
``` | ||
::: | ||
|
||
- Intended for local testing or demo testnet apps. | ||
- Based on [config](/sdk/setup), can show Smart Wallet option on `keys.coinbase.com` popup. | ||
- Only allows using Smart Wallet on testnets (currently just Base Sepolia). |