Skip to content

Commit

Permalink
#playground bump sdk version to 4.0.2 (#1306)
Browse files Browse the repository at this point in the history
* update testapp to 4.0.1 (#1300)

# Conflicts:
#	apps/testapp/package.json
#	yarn.lock

* 4.0.2

---------

Co-authored-by: Nate <[email protected]>
  • Loading branch information
bangtoven and nateReiners authored May 23, 2024
1 parent 1733e88 commit 450c4d2
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"@chakra-ui/react": "^2.8.0",
"@coinbase/wallet-sdk-3.7.2": "npm:@coinbase/[email protected]",
"@coinbase/wallet-sdk-3.9.3": "npm:@coinbase/[email protected]",
"@coinbase/wallet-sdk-4.0.0": "npm:@coinbase/[email protected].0",
"@coinbase/wallet-sdk-4.0.2": "npm:@coinbase/[email protected].2",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@metamask/eth-sig-util": "^7.0.0",
Expand Down
2 changes: 1 addition & 1 deletion src/components/Layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export function Layout({ children }: LayoutProps) {
))}
</MenuList>
</Menu>
{sdkVersion === '4.0.0' && (
{sdkVersion === '4.0.2' && (
<>
<Menu>
<MenuButton as={Button} rightIcon={<ChevronDownIcon />}>
Expand Down
10 changes: 5 additions & 5 deletions src/context/CBWSDKReactContextProvider.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { CoinbaseWalletSDK as CoinbaseWalletSDK372 } from '@coinbase/wallet-sdk-3.7.2';
import { CoinbaseWalletSDK as CoinbaseWalletSDK393 } from '@coinbase/wallet-sdk-3.9.3';
import { CoinbaseWalletSDK as CoinbaseWalletSDK400 } from '@coinbase/wallet-sdk-4.0.0';
import { CoinbaseWalletSDK as CoinbaseWalletSDK402 } from '@coinbase/wallet-sdk-4.0.2';
import React, { useEffect, useMemo } from 'react';

type CBWSDKProviderProps = {
Expand All @@ -10,7 +10,7 @@ type CBWSDKProviderProps = {
const CBWSDKReactContext = React.createContext(null);

const SELECTED_SDK_KEY = 'selected_sdk_version';
export const sdkVersions = ['4.0.0', '3.9.3', '3.7.2'] as const;
export const sdkVersions = ['4.0.2', '3.9.3', '3.7.2'] as const;
export type SDKVersionType = (typeof sdkVersions)[number];

const SELECTED_SCW_URL_KEY = 'scw_url';
Expand Down Expand Up @@ -73,8 +73,8 @@ export function CBWSDKReactContextProvider({ children }: CBWSDKProviderProps) {
useEffect(() => {
let cbwsdk;
let preference;
if (version === '4.0.0') {
cbwsdk = new CoinbaseWalletSDK400({
if (version === '4.0.2') {
cbwsdk = new CoinbaseWalletSDK402({
appName: 'SDK Playground',
appChainIds: [84532, 8452],
});
Expand All @@ -99,7 +99,7 @@ export function CBWSDKReactContextProvider({ children }: CBWSDKProviderProps) {
}, [version, option]);

useEffect(() => {
if (version === '4.0.0') {
if (version === '4.0.2') {
if (scwUrl) window.setPopupUrl?.(scwUrl);
}
}, [version, scwUrl, sdk]);
Expand Down
10 changes: 5 additions & 5 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1539,17 +1539,17 @@ __metadata:
languageName: node
linkType: hard

"@coinbase/wallet-sdk-4.0.0@npm:@coinbase/[email protected].0":
version: 4.0.0
resolution: "@coinbase/wallet-sdk@npm:4.0.0"
"@coinbase/wallet-sdk-4.0.2@npm:@coinbase/[email protected].2":
version: 4.0.2
resolution: "@coinbase/wallet-sdk@npm:4.0.2"
dependencies:
buffer: ^6.0.3
clsx: ^1.2.1
eventemitter3: ^5.0.1
keccak: ^3.0.3
preact: ^10.16.0
sha.js: ^2.4.11
checksum: f9101233cd4529daae235eb01fcd10fe3c9ab075b3171beacb755ff475be7a9e33957fb4ffedbdd34092c3045ddcbf6fda181a5adfd531307a4cc8937861ef38
checksum: d0cb646ae8a57142f0abc9a46ae449c732aec6347fc217547854ebb872668716b9494c5232dc564eeab2e26c9b24df3cfd536b7ee3027a39d5e9e89a6d05ea9c
languageName: node
linkType: hard

Expand All @@ -1561,7 +1561,7 @@ __metadata:
"@chakra-ui/react": ^2.8.0
"@coinbase/wallet-sdk-3.7.2": "npm:@coinbase/[email protected]"
"@coinbase/wallet-sdk-3.9.3": "npm:@coinbase/[email protected]"
"@coinbase/wallet-sdk-4.0.0": "npm:@coinbase/[email protected].0"
"@coinbase/wallet-sdk-4.0.2": "npm:@coinbase/[email protected].2"
"@emotion/react": ^11.11.1
"@emotion/styled": ^11.11.0
"@metamask/eth-sig-util": ^7.0.0
Expand Down

0 comments on commit 450c4d2

Please sign in to comment.