Skip to content
Merged
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
45 changes: 45 additions & 0 deletions .claude/skills/chain-integration/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -961,6 +961,50 @@ case KnownChainIds.[ChainName]Mainnet:
return supports[Chain](wallet) // from hdwallet-core
```

### Step 3.8: Add Asset Support Detection (CRITICAL!)

**IMPORTANT**: This was missing for recent chains (Tron, SUI, Monad, HyperEVM, Plasma) and caused assets not to show up properly!

**File**: `src/state/slices/portfolioSlice/utils/index.ts`

Add your chain to the `isAssetSupportedByWallet` function around line 367:

```typescript
// 1. Import your chain ID at the top
import {
// ... existing imports
[chainLower]ChainId,
} from '@shapeshiftoss/caip'

// 2. Import the support function from hdwallet-core
import {
// ... existing imports
supports[ChainName],
} from '@shapeshiftoss/hdwallet-core'

// 3. Add case to the switch statement in isAssetSupportedByWallet
export const isAssetSupportedByWallet = (assetId: AssetId, wallet: HDWallet): boolean => {
if (!assetId) return false
const { chainId } = fromAssetId(assetId)
switch (chainId) {
// ... existing cases
case [chainLower]ChainId:
return supports[ChainName](wallet)
// ... rest of cases
default:
return false
}
}
```

**Why this matters**: This function determines if a wallet can use a particular asset. Without it, assets for your chain won't appear in wallet UIs even if everything else is configured correctly!

**Example**: For HyperEVM, add:
```typescript
case hyperEvmChainId:
return supportsHyperEvm(wallet)
```

---

## Phase 4: Web Plugin & Feature Flags
Expand Down Expand Up @@ -1922,6 +1966,7 @@ case plasmaChainId:
- [ ] `src/context/PluginProvider/PluginProvider.tsx`
- [ ] `src/hooks/useWalletSupportsChain/useWalletSupportsChain.ts`
- [ ] `src/hooks/useActionCenterSubscribers/useSendActionSubscriber.tsx`
- [ ] `src/state/slices/portfolioSlice/utils/index.ts` (isAssetSupportedByWallet function)

### Web Files (Config)
- [ ] `.env`
Expand Down
2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ VITE_FEATURE_TRON=true
VITE_SUI_NODE_URL=https://fullnode.mainnet.sui.io:443
VITE_FEATURE_CETUS_SWAP=false
VITE_FEATURE_SUNIO_SWAP=false
VITE_FEATURE_MONAD=false
VITE_FEATURE_MONAD=true
VITE_FEATURE_PLASMA=false
VITE_HYPEREVM_NODE_URL=https://rpc.hyperliquid.xyz/evm
VITE_FEATURE_HYPEREVM=false
1 change: 0 additions & 1 deletion .env.development
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,6 @@ VITE_FEATURE_NOTIFICATIONS_WEBSERVICES=true
# VITE_NOTIFICATIONS_SERVER_URL=/notifications-api

VITE_FEATURE_WC_DIRECT_CONNECTION=true
VITE_FEATURE_MONAD=true
VITE_FEATURE_PLASMA=true
VITE_FEATURE_CETUS_SWAP=true
VITE_FEATURE_SUNIO_SWAP=true
Expand Down
36 changes: 18 additions & 18 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -100,24 +100,24 @@
"@shapeshiftoss/chain-adapters": "workspace:^",
"@shapeshiftoss/contracts": "workspace:^",
"@shapeshiftoss/errors": "workspace:^",
"@shapeshiftoss/hdwallet-coinbase": "1.62.30",
"@shapeshiftoss/hdwallet-core": "1.62.30",
"@shapeshiftoss/hdwallet-gridplus": "1.62.30",
"@shapeshiftoss/hdwallet-keepkey": "1.62.30",
"@shapeshiftoss/hdwallet-keepkey-webusb": "1.62.30",
"@shapeshiftoss/hdwallet-keplr": "1.62.30",
"@shapeshiftoss/hdwallet-ledger": "1.62.30",
"@shapeshiftoss/hdwallet-ledger-webhid": "1.62.30",
"@shapeshiftoss/hdwallet-ledger-webusb": "1.62.30",
"@shapeshiftoss/hdwallet-metamask-multichain": "1.62.30",
"@shapeshiftoss/hdwallet-native": "1.62.30",
"@shapeshiftoss/hdwallet-native-vault": "1.62.30",
"@shapeshiftoss/hdwallet-phantom": "1.62.30",
"@shapeshiftoss/hdwallet-trezor": "1.62.30",
"@shapeshiftoss/hdwallet-trezor-connect": "1.62.30",
"@shapeshiftoss/hdwallet-vultisig": "1.62.30",
"@shapeshiftoss/hdwallet-walletconnect": "1.62.30",
"@shapeshiftoss/hdwallet-walletconnectv2": "1.62.30",
"@shapeshiftoss/hdwallet-coinbase": "1.62.31",
"@shapeshiftoss/hdwallet-core": "1.62.31",
"@shapeshiftoss/hdwallet-gridplus": "1.62.31",
"@shapeshiftoss/hdwallet-keepkey": "1.62.31",
"@shapeshiftoss/hdwallet-keepkey-webusb": "1.62.31",
"@shapeshiftoss/hdwallet-keplr": "1.62.31",
"@shapeshiftoss/hdwallet-ledger": "1.62.31",
"@shapeshiftoss/hdwallet-ledger-webhid": "1.62.31",
"@shapeshiftoss/hdwallet-ledger-webusb": "1.62.31",
"@shapeshiftoss/hdwallet-metamask-multichain": "1.62.31",
"@shapeshiftoss/hdwallet-native": "1.62.31",
"@shapeshiftoss/hdwallet-native-vault": "1.62.31",
"@shapeshiftoss/hdwallet-phantom": "1.62.31",
"@shapeshiftoss/hdwallet-trezor": "1.62.31",
"@shapeshiftoss/hdwallet-trezor-connect": "1.62.31",
"@shapeshiftoss/hdwallet-vultisig": "1.62.31",
"@shapeshiftoss/hdwallet-walletconnect": "1.62.31",
"@shapeshiftoss/hdwallet-walletconnectv2": "1.62.31",
"@shapeshiftoss/swapper": "workspace:^",
"@shapeshiftoss/types": "workspace:^",
"@shapeshiftoss/unchained-client": "workspace:^",
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f":"tether","eip155:137/erc20:0x3c499c542cef5e3811e1192ce70d8cc03d5c3359":"usd-coin","eip155:137/erc20:0x03b54a6e9a984069379fae1a4fc4dbae93b3bccd":"lido-finance-wsteth","eip155:137/erc20:0x1bfd67037b42cf73acf2047067bd4f2c47d9bfd6":"wrapped-bitcoin","eip155:137/erc20:0x7ceb23fd6bc0add59e62ac25578270cff1b9f619":"weth","eip155:137/erc20:0x53e0bca35ec356bd5dddfebbd1fc0fd03fabad39":"chainlink","eip155:137/erc20:0xd6df932a45c0f255f85145f286ea0b292b21c90b":"aave","eip155:137/erc20:0x553d3d295e0f695b9228246232edf400ed3560b5":"pax-gold","eip155:137/erc20:0xecdcb5b88f8e3c15f95c720c51c71c9e2080525d":"wbnb","eip155:137/erc20:0x0000000000000000000000000000000000001010":"polygon","eip155:137/erc20:0xac51c4c48dc3116487ed4bc16542e27b5694da1b":"cosmos","eip155:137/erc20:0x61299774020da444af134c82fa83e3810b309991":"render","eip155:137/erc20:0xe5b49820e5a1063f6f4ddf851327b5e8b2301048":"bonk1","eip155:137/erc20:0x41b3966b4ff7b427969ddf5da3627d6aeae9a48e":"nexo","eip155:137/erc20:0x172370d5cd63279efa6d502dab29171933a610af":"curve-dao-token","eip155:137/erc20:0x6985884c4392d348587b19cb9eaaf157f13271cd":"layerzero","eip155:137/erc20:0xbbba073c31bf03b8acf7c28ef0738decf3695683":"the-sandbox","eip155:137/erc20:0x45c32fa6df82ead1e2ef74d17b76547eddfaff89":"frax","eip155:137/erc20:0x00000000efe302beaa2b3e6e1b18d08d69a9012a":"agora-finance","eip155:137/erc20:0xa1428174f516f527fafdd146b883bb4428682737":"superverse","eip155:137/erc20:0x50b728d8d964fd00c2d0aad81718b71311fef68a":"synthetix-network-token","eip155:137/erc20:0x87d32f2c0a3d6d091772890c81e321026454a125":"kava","eip155:137/erc20:0x7bebd226154e865954a87650faefa8f485d36081":"zigcoin","eip155:137/erc20:0x0b3f868e0be5597d5db7feb59e1cadbb0fdda50a":"sushiswap","eip155:137/erc20:0x2f6f07cdcf3588944bf4c42ac74ff24bf56e7590":"stargate-finance","eip155:137/erc20:0xf6372cdb9c1d3674e83842e3800f2a62ac9f3c66":"iotex","eip155:137/erc20:0x101a023270368c0d50bffb62780f4afd4ea79c35":"ankr","eip155:137/erc20:0x2b9e7ccdf0f4e5b24757c1e1a80e311e34cb10c7":"mask-network","eip155:137/erc20:0x1c954e8fe737f99f68fa1ccda3e51ebdb291948c":"kyber-network","eip155:137/erc20:0x1b815d120b3ef02039ee11dc2d33de7aa4a8c603":"wootrade","eip155:137/erc20:0x692597b009d13c4049a947cab2239b7d6517875f":"terrausd","eip155:137/erc20:0xb9638272ad6998708de56bbc0a290a1de534a578":"everipedia","eip155:137/erc20:0xdbf31df14b66535af65aac99c32e9ea844e14501":"renbtc","eip155:137/erc20:0x2727ab1c2d22170abc9b595177b2d5c6e1ab7b7b":"cartesi","eip155:137/erc20:0xc4e82ba0fe6763cbe5e9cbca0ba7cbd6f91c6018":"ankreth","eip155:137/erc20:0xe0339c80ffde91f3e20494df88d4206d86024cdf":"dogelon","eip155:137/erc20:0x430ef9263e76dae63c84292c3409d61c598e9682":"vulcan-forged-pyr","eip155:137/erc20:0x72d6066f486bd0052eefb9114b66ae40e0a6031a":"wazirx","eip155:137/erc20:0x0df0f72ee0e5c9b7ca761ecec42754992b2da5bf":"automata-network","eip155:137/erc20:0xa9f37d84c856fda3812ad0519dad44fa0a3fe207":"enzyme","eip155:137/erc20:0xe83ce6bfb580583bd6a62b4be7b34fc25f02910d":"abbc-coin","eip155:137/erc20:0xdda7b23d2d72746663e7939743f929a3d85fc975":"adx-net","eip155:137/erc20:0xdc3326e71d45186f113a2f448984ca0e8d201995":"xsgd","eip155:137/erc20:0x176f5ab638cf4ff3b6239ba609c3fadaa46ef5b0":"harvest-finance","eip155:137/erc20:0x08c15fa26e519a78a666d19ce5c646d55047e0a3":"dforce","eip155:137/erc20:0x8de5b80a0c1b02fe4976851d030b36122dbb8624":"terra-virtua-kolect","eip155:137/erc20:0x193f4a4a6ea24102f49b931deeeb931f6e32405d":"telos","eip155:137/erc20:0x28c388fb1f4fa9f9eb445f0579666849ee5eeb42":"bella-protocol","eip155:137/erc20:0x3a9a81d576d83ff21f26f325066054540720fc34":"streamr","eip155:137/erc20:0x8c92e38eca8210f4fcbf17f0951b198dd7668292":"dhedge-dao","eip155:137/erc20:0xdd75542611d57c4b6e68168b14c3591c539022ed":"unizen","eip155:137/erc20:0x8d1566569d5b695d44a9a234540f68d393cdc40d":"gamecredits","eip155:137/erc20:0x3809dcdd5dde24b37abe64a5a339784c3323c44f":"trustswap","eip155:137/erc20:0x09c5a4bca808bd1ba2b8e6b3aaf7442046b4ca5b":"vesper","eip155:137/erc20:0xaa3717090cddc9b227e49d0d84a28ac0a996e6ff":"permission-coin","eip155:137/erc20:0x6b021b3f68491974be6d4009fee61a4e3c708fd6":"fuse-network","eip155:137/erc20:0x58001cc1a9e17a20935079ab40b1b8f4fc19efd1":"epns","eip155:137/erc20:0x3dc6052a693e4a2fc28eb2ea12fe0cfd3bd221d1":"irisnet","eip155:137/erc20:0x71b821aa52a49f32eed535fca6eb5aa130085978":"0xbtc","eip155:137/erc20:0x70c006878a5a50ed185ac4c87d837633923de296":"revv","eip155:137/erc20:0x07cc1cc3628cc1615120df781ef9fc8ec2feae09":"bepro-network","eip155:137/erc20:0x64ca1571d1476b7a21c5aaf9f1a750a193a103c0":"bondly","eip155:137/erc20:0x3b737a181f7d2532cf49864f8050b3465a310593":"hot-cross","eip155:137/erc20:0xddafb91475bbf6210a151fa911ac8fda7de46ec2":"giveth","eip155:137/erc20:0x0d6ae2a429df13e44a07cd2969e085e4833f64a0":"polkabridge","eip155:137/erc20:0x36fe11b6d5c9421f68d235694fe192b35e803903":"xend-finance","eip155:137/erc20:0x5b4cf2c120a9702225814e18543ee658c5f8631e":"unilend","eip155:137/erc20:0x638df98ad8069a15569da5a6b01181804c47e34c":"dafi-protocol","eip155:137/erc20:0x43df9c0a1156c96cea98737b511ac89d0e2a1f46":"govi","eip155:137/erc20:0x5bf9496f0cd1f71c3353c3766f510772d7553b4f":"senso","eip155:137/erc20:0xa0e390e9cea0d0e8cd40048ced9fa9ea10d71639":"dsla-protocol","eip155:137/erc20:0xae07b360cf41c8971f6c544620a6ed428ff3a661":"geodb","eip155:137/erc20:0xb121fcd122daaa153bb8a102754127b2682645cb":"perlin","eip155:137/erc20:0x61aee582896064ecd5d85d66a32ddeb5574a699d":"hyve","eip155:137/erc20:0x4e830f67ec499e69930867f9017aeb5b3f629c73":"oddz","eip155:137/erc20:0x855d4248672a1fce482165e8dbe1207b94b1968a":"wowswap","eip155:137/erc20:0x31042a4e66eda0d12143ffc8cc1552d611da4cba":"morpheus-labs","eip155:137/erc20:0xfd4959c06fbcc02250952daebf8e0fb38cf9fd8c":"zeroswap","eip155:137/erc20:0x2ab4f9ac80f33071211729e45cfc346c1f8446d5":"chain-guardians","eip155:137/erc20:0x831753dd7087cac61ab5644b308642cc1c33dc13":"quickswap","eip155:137/erc20:0x4fb71290ac171e1d144f7221d882becac7196eb5":"bilira","eip155:137/erc20:0x34c1b299a74588d6abdc1b85a53345a48428a521":"easyfi","eip155:137/erc20:0xc46a37fbbe433ef24bc7b9388c8728ddcf3ca87c":"mainstream-for-the-underground","eip155:137/erc20:0x68b741416153bbf5cb4faee0aa447f918fe5c322":"ion","eip155:137/erc20:0x840195888db4d6a99ed9f73fcd3b225bb3cb1a79":"sportx","eip155:137/erc20:0x8a953cfe442c5e8855cc6c61b1293fa648bae472":"polydoge","eip155:137/erc20:0x672255e73e9fcb8d8971b6e2622057baa84b5afe":"herocoin","eip155:137/erc20:0x59b5654a17ac44f3068b3882f298881433bb07ef":"coinpoker","eip155:137/erc20:0x23d29d30e35c5e8d321e1dc9a8a61bfd846d4c5c":"hex"}
{"eip155:137/erc20:0xc2132d05d31c914a87c6611c10748aeb04b58e8f":"tether","eip155:137/erc20:0x3c499c542cef5e3811e1192ce70d8cc03d5c3359":"usd-coin","eip155:137/erc20:0x03b54a6e9a984069379fae1a4fc4dbae93b3bccd":"lido-finance-wsteth","eip155:137/erc20:0x1bfd67037b42cf73acf2047067bd4f2c47d9bfd6":"wrapped-bitcoin","eip155:137/erc20:0x7ceb23fd6bc0add59e62ac25578270cff1b9f619":"weth","eip155:137/erc20:0x53e0bca35ec356bd5dddfebbd1fc0fd03fabad39":"chainlink","eip155:137/erc20:0xd6df932a45c0f255f85145f286ea0b292b21c90b":"aave","eip155:137/erc20:0x553d3d295e0f695b9228246232edf400ed3560b5":"pax-gold","eip155:137/erc20:0xecdcb5b88f8e3c15f95c720c51c71c9e2080525d":"wbnb","eip155:137/erc20:0x0000000000000000000000000000000000001010":"polygon","eip155:137/erc20:0xac51c4c48dc3116487ed4bc16542e27b5694da1b":"cosmos","eip155:137/erc20:0x61299774020da444af134c82fa83e3810b309991":"render","eip155:137/erc20:0xe5b49820e5a1063f6f4ddf851327b5e8b2301048":"bonk1","eip155:137/erc20:0x41b3966b4ff7b427969ddf5da3627d6aeae9a48e":"nexo","eip155:137/erc20:0x172370d5cd63279efa6d502dab29171933a610af":"curve-dao-token","eip155:137/erc20:0x6985884c4392d348587b19cb9eaaf157f13271cd":"layerzero","eip155:137/erc20:0xbbba073c31bf03b8acf7c28ef0738decf3695683":"the-sandbox","eip155:137/erc20:0x45c32fa6df82ead1e2ef74d17b76547eddfaff89":"frax","eip155:137/erc20:0x00000000efe302beaa2b3e6e1b18d08d69a9012a":"agora-finance","eip155:137/erc20:0xa1428174f516f527fafdd146b883bb4428682737":"superverse","eip155:137/erc20:0x50b728d8d964fd00c2d0aad81718b71311fef68a":"synthetix-network-token","eip155:137/erc20:0x7bebd226154e865954a87650faefa8f485d36081":"zigcoin","eip155:137/erc20:0x87d32f2c0a3d6d091772890c81e321026454a125":"kava","eip155:137/erc20:0x0b3f868e0be5597d5db7feb59e1cadbb0fdda50a":"sushiswap","eip155:137/erc20:0x2f6f07cdcf3588944bf4c42ac74ff24bf56e7590":"stargate-finance","eip155:137/erc20:0xf6372cdb9c1d3674e83842e3800f2a62ac9f3c66":"iotex","eip155:137/erc20:0x101a023270368c0d50bffb62780f4afd4ea79c35":"ankr","eip155:137/erc20:0x2b9e7ccdf0f4e5b24757c1e1a80e311e34cb10c7":"mask-network","eip155:137/erc20:0x1c954e8fe737f99f68fa1ccda3e51ebdb291948c":"kyber-network","eip155:137/erc20:0x1b815d120b3ef02039ee11dc2d33de7aa4a8c603":"wootrade","eip155:137/erc20:0x692597b009d13c4049a947cab2239b7d6517875f":"terrausd","eip155:137/erc20:0xb9638272ad6998708de56bbc0a290a1de534a578":"everipedia","eip155:137/erc20:0xdbf31df14b66535af65aac99c32e9ea844e14501":"renbtc","eip155:137/erc20:0x2727ab1c2d22170abc9b595177b2d5c6e1ab7b7b":"cartesi","eip155:137/erc20:0xe0339c80ffde91f3e20494df88d4206d86024cdf":"dogelon","eip155:137/erc20:0xc4e82ba0fe6763cbe5e9cbca0ba7cbd6f91c6018":"ankreth","eip155:137/erc20:0x72d6066f486bd0052eefb9114b66ae40e0a6031a":"wazirx","eip155:137/erc20:0x430ef9263e76dae63c84292c3409d61c598e9682":"vulcan-forged-pyr","eip155:137/erc20:0x0df0f72ee0e5c9b7ca761ecec42754992b2da5bf":"automata-network","eip155:137/erc20:0xe83ce6bfb580583bd6a62b4be7b34fc25f02910d":"abbc-coin","eip155:137/erc20:0xa9f37d84c856fda3812ad0519dad44fa0a3fe207":"enzyme","eip155:137/erc20:0xdc3326e71d45186f113a2f448984ca0e8d201995":"xsgd","eip155:137/erc20:0xdda7b23d2d72746663e7939743f929a3d85fc975":"adx-net","eip155:137/erc20:0x176f5ab638cf4ff3b6239ba609c3fadaa46ef5b0":"harvest-finance","eip155:137/erc20:0x8de5b80a0c1b02fe4976851d030b36122dbb8624":"terra-virtua-kolect","eip155:137/erc20:0x08c15fa26e519a78a666d19ce5c646d55047e0a3":"dforce","eip155:137/erc20:0x193f4a4a6ea24102f49b931deeeb931f6e32405d":"telos","eip155:137/erc20:0x28c388fb1f4fa9f9eb445f0579666849ee5eeb42":"bella-protocol","eip155:137/erc20:0x3a9a81d576d83ff21f26f325066054540720fc34":"streamr","eip155:137/erc20:0x8c92e38eca8210f4fcbf17f0951b198dd7668292":"dhedge-dao","eip155:137/erc20:0x3809dcdd5dde24b37abe64a5a339784c3323c44f":"trustswap","eip155:137/erc20:0xdd75542611d57c4b6e68168b14c3591c539022ed":"unizen","eip155:137/erc20:0x8d1566569d5b695d44a9a234540f68d393cdc40d":"gamecredits","eip155:137/erc20:0xaa3717090cddc9b227e49d0d84a28ac0a996e6ff":"permission-coin","eip155:137/erc20:0x6b021b3f68491974be6d4009fee61a4e3c708fd6":"fuse-network","eip155:137/erc20:0x09c5a4bca808bd1ba2b8e6b3aaf7442046b4ca5b":"vesper","eip155:137/erc20:0x58001cc1a9e17a20935079ab40b1b8f4fc19efd1":"epns","eip155:137/erc20:0x3dc6052a693e4a2fc28eb2ea12fe0cfd3bd221d1":"irisnet","eip155:137/erc20:0x71b821aa52a49f32eed535fca6eb5aa130085978":"0xbtc","eip155:137/erc20:0x70c006878a5a50ed185ac4c87d837633923de296":"revv","eip155:137/erc20:0x07cc1cc3628cc1615120df781ef9fc8ec2feae09":"bepro-network","eip155:137/erc20:0x64ca1571d1476b7a21c5aaf9f1a750a193a103c0":"bondly","eip155:137/erc20:0x3b737a181f7d2532cf49864f8050b3465a310593":"hot-cross","eip155:137/erc20:0xddafb91475bbf6210a151fa911ac8fda7de46ec2":"giveth","eip155:137/erc20:0x0d6ae2a429df13e44a07cd2969e085e4833f64a0":"polkabridge","eip155:137/erc20:0x5b4cf2c120a9702225814e18543ee658c5f8631e":"unilend","eip155:137/erc20:0x36fe11b6d5c9421f68d235694fe192b35e803903":"xend-finance","eip155:137/erc20:0x638df98ad8069a15569da5a6b01181804c47e34c":"dafi-protocol","eip155:137/erc20:0x43df9c0a1156c96cea98737b511ac89d0e2a1f46":"govi","eip155:137/erc20:0x5bf9496f0cd1f71c3353c3766f510772d7553b4f":"senso","eip155:137/erc20:0xb121fcd122daaa153bb8a102754127b2682645cb":"perlin","eip155:137/erc20:0xa0e390e9cea0d0e8cd40048ced9fa9ea10d71639":"dsla-protocol","eip155:137/erc20:0xae07b360cf41c8971f6c544620a6ed428ff3a661":"geodb","eip155:137/erc20:0x61aee582896064ecd5d85d66a32ddeb5574a699d":"hyve","eip155:137/erc20:0x4e830f67ec499e69930867f9017aeb5b3f629c73":"oddz","eip155:137/erc20:0x855d4248672a1fce482165e8dbe1207b94b1968a":"wowswap","eip155:137/erc20:0xfd4959c06fbcc02250952daebf8e0fb38cf9fd8c":"zeroswap","eip155:137/erc20:0x31042a4e66eda0d12143ffc8cc1552d611da4cba":"morpheus-labs","eip155:137/erc20:0x2ab4f9ac80f33071211729e45cfc346c1f8446d5":"chain-guardians","eip155:137/erc20:0x831753dd7087cac61ab5644b308642cc1c33dc13":"quickswap","eip155:137/erc20:0x4fb71290ac171e1d144f7221d882becac7196eb5":"bilira","eip155:137/erc20:0x34c1b299a74588d6abdc1b85a53345a48428a521":"easyfi","eip155:137/erc20:0xc46a37fbbe433ef24bc7b9388c8728ddcf3ca87c":"mainstream-for-the-underground","eip155:137/erc20:0x68b741416153bbf5cb4faee0aa447f918fe5c322":"ion","eip155:137/erc20:0x8a953cfe442c5e8855cc6c61b1293fa648bae472":"polydoge","eip155:137/erc20:0x672255e73e9fcb8d8971b6e2622057baa84b5afe":"herocoin","eip155:137/erc20:0x840195888db4d6a99ed9f73fcd3b225bb3cb1a79":"sportx","eip155:137/erc20:0x59b5654a17ac44f3068b3882f298881433bb07ef":"coinpoker","eip155:137/erc20:0x23d29d30e35c5e8d321e1dc9a8a61bfd846d4c5c":"hex"}
Loading
Loading