Skip to content

Commit

Permalink
chore: update wallet link to keys.coinbase.com (#1244)
Browse files Browse the repository at this point in the history
Co-authored-by: Alissa Crane <alissa.crane@coinbase.com>
  • Loading branch information
abcrane123 and alissacrane-cb authored Sep 12, 2024
1 parent aa3036e commit eeba141
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion playground/nextjs-app-router/components/demo/Wallet.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ function WalletComponent() {
<WalletDropdownBasename />
<WalletDropdownLink
icon="wallet"
href="https://wallet.coinbase.com"
href="https://keys.coinbase.com"
target="_blank"
>
Wallet
Expand Down
4 changes: 2 additions & 2 deletions site/docs/pages/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ bun add @coinbase/onchainkit
<Address />
<EthBalance />
</Identity>
<WalletDropdownLink icon="wallet" href="https://wallet.coinbase.com">
<WalletDropdownLink icon="wallet" href="https://keys.coinbase.com">
Wallet
</WalletDropdownLink>
<WalletDropdownBasename />
Expand All @@ -172,7 +172,7 @@ bun add @coinbase/onchainkit
<Address className={color.foregroundMuted} />
<EthBalance />
</Identity>
<WalletDropdownLink icon="wallet" href="https://wallet.coinbase.com">
<WalletDropdownLink icon="wallet" href="https://keys.coinbase.com">
Wallet
</WalletDropdownLink>
<WalletDropdownBasename />
Expand Down
12 changes: 6 additions & 6 deletions site/docs/pages/wallet/wallet-dropdown-link.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export function WalletComponents() {
<Address className={color.foregroundMuted} />
<EthBalance />
</Identity>
<WalletDropdownLink icon="wallet" href="https://wallet.coinbase.com"> // [!code focus]
<WalletDropdownLink icon="wallet" href="https://keys.coinbase.com"> // [!code focus]
Wallet // [!code focus]
</WalletDropdownLink> // [!code focus]
<WalletDropdownDisconnect />
Expand All @@ -79,7 +79,7 @@ export function WalletComponents() {
<Address className={color.foregroundMuted} />
<EthBalance />
</Identity>
<WalletDropdownLink icon="wallet" href="https://wallet.coinbase.com">
<WalletDropdownLink icon="wallet" href="https://keys.coinbase.com">
Wallet
</WalletDropdownLink>
<WalletDropdownDisconnect />
Expand Down Expand Up @@ -132,7 +132,7 @@ This allows for diverse customizations, including complex layouts and conditiona

```tsx
// omitted for brevity
<WalletDropdownLink icon="wallet" href="https://wallet.coinbase.com"> // [!code focus]
<WalletDropdownLink icon="wallet" href="https://keys.coinbase.com"> // [!code focus]
<span className="font-bold italic">Profile</span> // [!code focus]
<span> 🔵 </span> // [!code focus]
</WalletDropdownLink> // [!code focus]
Expand All @@ -151,7 +151,7 @@ This allows for diverse customizations, including complex layouts and conditiona
<Address className={color.foregroundMuted} />
<EthBalance />
</Identity>
<WalletDropdownLink icon="wallet" href="https://wallet.coinbase.com">
<WalletDropdownLink icon="wallet" href="https://keys.coinbase.com">
<span className="font-bold italic">Profile</span>
<span> 🔵 </span>
</WalletDropdownLink>
Expand All @@ -165,7 +165,7 @@ You can override component styles using className.

```tsx
// omitted for brevity
<WalletDropdownLink className="hover:bg-red-500" icon="wallet" href="https://wallet.coinbase.com" > // [!code focus]
<WalletDropdownLink className="hover:bg-red-500" icon="wallet" href="https://keys.coinbase.com" > // [!code focus]
Wallet // [!code focus]
</WalletDropdownLink> // [!code focus]
```
Expand All @@ -183,7 +183,7 @@ You can override component styles using className.
<Address className={color.foregroundMuted} />
<EthBalance />
</Identity>
<WalletDropdownLink className="hover:bg-red-500" icon="wallet" href="https://wallet.coinbase.com">
<WalletDropdownLink className="hover:bg-red-500" icon="wallet" href="https://keys.coinbase.com">
Wallet
</WalletDropdownLink>
<WalletDropdownDisconnect />
Expand Down
14 changes: 7 additions & 7 deletions site/docs/pages/wallet/wallet.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export function WalletComponents() {
<Address className={color.foregroundMuted} />
<EthBalance />
</Identity>
<WalletDropdownLink icon="wallet" href="https://wallet.coinbase.com"> // [!code focus]
<WalletDropdownLink icon="wallet" href="https://keys.coinbase.com"> // [!code focus]
Wallet // [!code focus]
</WalletDropdownLink> // [!code focus]
<WalletDropdownDisconnect /> // [!code focus]
Expand All @@ -83,7 +83,7 @@ export function WalletComponents() {
<Address className={color.foregroundMuted} />
<EthBalance />
</Identity>
<WalletDropdownLink icon="wallet" href="https://wallet.coinbase.com">
<WalletDropdownLink icon="wallet" href="https://keys.coinbase.com">
Wallet
</WalletDropdownLink>
<WalletDropdownDisconnect />
Expand Down Expand Up @@ -116,7 +116,7 @@ You can override component styles using `className`.
<WalletDropdownLink
className='hover:bg-blue-200'
icon="wallet"
href="https://wallet.coinbase.com"
href="https://keys.coinbase.com"
>
Wallet
</WalletDropdownLink>
Expand All @@ -141,7 +141,7 @@ You can override component styles using `className`.
<WalletDropdownLink
className='hover:bg-blue-200'
icon="wallet"
href="https://wallet.coinbase.com"
href="https://keys.coinbase.com"
>
Wallet
</WalletDropdownLink>
Expand Down Expand Up @@ -178,7 +178,7 @@ You can override component text using `text`.
<Address className={color.foregroundMuted} />
<EthBalance />
</Identity>
<WalletDropdownLink icon="wallet" href="https://wallet.coinbase.com">
<WalletDropdownLink icon="wallet" href="https://keys.coinbase.com">
Wallet
</WalletDropdownLink>
<WalletDropdownDisconnect />
Expand Down Expand Up @@ -244,7 +244,7 @@ OnchainKit leverages [RainbowKit](https://www.rainbowkit.com/) to offer this fea
</Identity>
<WalletDropdownLink
icon="wallet"
href="https://wallet.coinbase.com"
href="https://keys.coinbase.com"
>
Wallet
</WalletDropdownLink>
Expand Down Expand Up @@ -338,7 +338,7 @@ export default OnchainProviders;
</Identity>
<WalletDropdownLink
icon="wallet"
href="https://wallet.coinbase.com"
href="https://keys.coinbase.com"
>
Wallet
</WalletDropdownLink>
Expand Down

0 comments on commit eeba141

Please sign in to comment.