Skip to content

wip: non evm 1ca #898

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 6 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 13 additions & 12 deletions advanced/dapps/react-dapp-v2/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,13 @@
"@solana/web3.js": "^1.36.0",
"@stacks/network": "^7.0.2",
"@stacks/transactions": "^7.0.6",
"@walletconnect/core": "2.21.3",
"@walletconnect/core": "2.20.3-canary-1ca-4",
"@walletconnect/encoding": "^1.0.1",
"@walletconnect/jsonrpc-utils": "^1.0.8",
"@walletconnect/types": "2.21.3",
"@walletconnect/universal-provider": "2.21.3",
"@walletconnect/utils": "2.21.3",
"@walletconnect/types": "2.20.3-canary-1ca-4",
"@walletconnect/universal-provider": "2.20.3-canary-1ca-4",
"@walletconnect/sign-client": "2.20.3-canary-1ca-4",
"@walletconnect/utils": "2.20.3-canary-1ca-4",
"@reown/appkit": "1.7.5",
"axios": "^1.0.0",
"@mysten/sui": "^1.29.1",
Expand Down Expand Up @@ -111,14 +112,14 @@
"next@>=9.5.5 <14.2.15": ">=14.2.15",
"ansi-html@<0.0.8": ">=0.0.8",
"axios@<1.8.2": ">=1.8.2",
"@walletconnect/core@": ">=2.21.3",
"@walletconnect/encoding@": ">=1.0.1",
"@walletconnect/jsonrpc-utils@": ">=1.0.8",
"@walletconnect/types@": ">=2.21.3",
"@walletconnect/universal-provider@": ">=2.21.3",
"@walletconnect/sign-client@": ">=2.21.3",
"@walletconnect/utils@": ">=2.21.3",
"@walletconnect/ethereum-provider@": ">=2.21.3"
"@walletconnect/core@<2.21.3-canary-1ca-0": ">=2.20.3-canary-1ca-4",
"@walletconnect/encoding": ">=1.0.1",
"@walletconnect/jsonrpc-utils": ">=1.0.8",
"@walletconnect/types@<2.21.3-canary-1ca-0": ">=2.20.3-canary-1ca-4",
"@walletconnect/universal-provider@<2.21.3-canary-1ca-0": ">=2.20.3-canary-1ca-4",
"@walletconnect/sign-client@<2.21.3-canary-1ca-0": ">=2.20.3-canary-1ca-4",
"@walletconnect/utils@<2.21.3-canary-1ca-0": ">=2.20.3-canary-1ca-4",
"@walletconnect/ethereum-provider@<2.21.3-canary-1ca-0": ">=2.20.3-canary-1ca-4"
}
}
}
132 changes: 55 additions & 77 deletions advanced/dapps/react-dapp-v2/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 14 additions & 14 deletions advanced/dapps/react-dapp-v2/src/constants/default.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@ export const DEFAULT_MAIN_CHAINS = [
"eip155:324",
"eip155:42161",
"eip155:42220",
"cosmos:cosmoshub-4",
// "cosmos:cosmoshub-4",
"solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"polkadot:91b171bb158e2d3848fa23a9f1c25182",
"mvx:1",
"tron:0x2b6653dc",
"tezos:mainnet",
"kadena:mainnet01",
// "polkadot:91b171bb158e2d3848fa23a9f1c25182",
// "mvx:1",
// "tron:0x2b6653dc",
// "tezos:mainnet",
// "kadena:mainnet01",
"bip122:000000000019d6689c085ae165831e93",
"sui:mainnet",
"stacks:1",
// "stacks:1",
];

export const DEFAULT_TEST_CHAINS = [
Expand All @@ -35,16 +35,16 @@ export const DEFAULT_TEST_CHAINS = [
"eip155:44787",
"solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1",
"solana:4uhcVJyU9pJkvQyS88uRDiswHXSCkY3z",
"polkadot:e143f23803ac50e8f6f8e62695d1ce9e",
"near:testnet",
"mvx:D",
"tron:0xcd8690dc",
"tezos:testnet",
"kadena:testnet04",
// "polkadot:e143f23803ac50e8f6f8e62695d1ce9e",
// "near:testnet",
// "mvx:D",
// "tron:0xcd8690dc",
// "tezos:testnet",
// "kadena:testnet04",
"bip122:000000000933ea01ad0ee984209779ba",
"sui:testnet",
"sui:devnet",
"stacks:2147483648",
// "stacks:2147483648",
];

export const DEFAULT_CHAINS = [...DEFAULT_MAIN_CHAINS, ...DEFAULT_TEST_CHAINS];
Expand Down
Loading