From ed985917a0a0c975a02b39659b63c5b578daa2e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pedro=20Brand=C3=A3o?= Date: Sun, 26 Nov 2023 12:57:10 +0000 Subject: [PATCH] Reorganizing assets into separate JSON files --- core/src/transaction/types.ts | 27 +- data/assets/137/aaveV3Deposit.json | 45 + data/assets/137/balancerDeposit.json | 57 + data/assets/137/beefyDeposit.json | 82 + .../137/gammaDeposit.json} | 1652 ----------------- data/assets/137/token.json | 1476 +++++++++++++++ 6 files changed, 1683 insertions(+), 1656 deletions(-) create mode 100644 data/assets/137/aaveV3Deposit.json create mode 100644 data/assets/137/balancerDeposit.json create mode 100644 data/assets/137/beefyDeposit.json rename data/{assets.json => assets/137/gammaDeposit.json} (58%) create mode 100644 data/assets/137/token.json diff --git a/core/src/transaction/types.ts b/core/src/transaction/types.ts index 6c3c05b..859d04e 100644 --- a/core/src/transaction/types.ts +++ b/core/src/transaction/types.ts @@ -1,7 +1,8 @@ import { BigNumberish, Provider, getAddress } from "ethers"; import { getPricesAndLinkedAssets } from "./get-prices-and-linked-assets"; import { Router } from "core/src/abis"; - +import path from "path"; +import fs from "fs"; export interface Asset { id: string; name: string; @@ -45,15 +46,33 @@ export class AssetStore { this.#prices = {}; this.#linkedAssets = {}; - const definiteAssets: Asset[] = - assets ?? require("../../../data/assets.json"); + const consolidatedAssets = assets ?? this.loadAssets(); - definiteAssets.forEach((asset) => { + consolidatedAssets.forEach((asset) => { this.#byId[asset.id] = asset; this.#byAddress[asset.address] = asset; }); } + loadAssets() { + const assetDirPath = path.join(__dirname, "../../../data/assets"); + const chainIds = fs.readdirSync(assetDirPath); + let allAssets = []; + + for (const chainId of chainIds) { + const protocolDirPath = path.join(assetDirPath, chainId); + const protocolTypes = fs.readdirSync(protocolDirPath); + + for (const protocolType of protocolTypes) { + const filePath = path.join(protocolDirPath, protocolType); + const assets = JSON.parse(fs.readFileSync(filePath, "utf8")); + allAssets = allAssets.concat(assets); + } + } + + return allAssets; + } + // Function that gets asset by ID, if not found throws an error getAssetById(assetId: string): Asset { const asset = this.#byId[assetId]; diff --git a/data/assets/137/aaveV3Deposit.json b/data/assets/137/aaveV3Deposit.json new file mode 100644 index 0000000..b9a34f8 --- /dev/null +++ b/data/assets/137/aaveV3Deposit.json @@ -0,0 +1,45 @@ +[ + { + "id": "46062b41-6661-4eae-bc11-4d4ec07b062f", + "active": true, + "address": "0x6d80113e533a2C0fe82EaBD35f1875DcEA89Ea97", + "color": "#468af0", + "decimals": 18, + "linkedAssets": [ + { + "assetId": "d604439e-d464-4df5-bed1-66815b348cab", + "fraction": 1 + } + ], + "name": "Aave Polygon WMATIC", + "chainId": 137, + "symbol": "aPolWMATIC", + "type": "aaveV3Deposit", + "visible": true, + "category": ["Lending", "Yield", "Blue chip"], + "allowSlot": 53, + "balanceSlot": 52, + "maxSize": 40 + }, + { + "id": "371b83f1-3301-4c69-b3ad-8d199c6d1774", + "active": true, + "address": "0x625e7708f30ca75bfd92586e17077590c60eb4cd", + "color": "#2775ca", + "decimals": 6, + "linkedAssets": [ + { + "assetId": "e251ecf6-48c2-4538-afcd-fbb92424054d", + "fraction": 1 + } + ], + "name": "Aave Polygon USDC", + "chainId": 137, + "symbol": "aPolUSDC", + "type": "aaveV3Deposit", + "visible": true, + "allowSlot": 53, + "balanceSlot": 52, + "maxSize": 40 + } +] diff --git a/data/assets/137/balancerDeposit.json b/data/assets/137/balancerDeposit.json new file mode 100644 index 0000000..06bd8a9 --- /dev/null +++ b/data/assets/137/balancerDeposit.json @@ -0,0 +1,57 @@ +[ + { + "id": "03f36f17-bbc2-4d8d-b0b2-9ce0f534d708", + "active": true, + "address": "0x42942cDeC85078Cf0e28e9CB5ACd40CB53997Ed6", + "callParams": { + "poolId": "0x42942cdec85078cf0e28e9cb5acd40cb53997ed6000000000000000000000bea", + "selfIndex": 1 + }, + "color": "#049c3c", + "decimals": 18, + "linkedAssets": [ + { + "assetId": "90f159bc-b2ef-4251-a24b-a4fa7b5b97fa", + "fraction": 0 + }, + { + "assetId": "578aa621-59d8-4c4c-ad01-891f50769f4a", + "fraction": 1 + } + ], + "name": "jBRL/BRZ", + "chainId": 137, + "symbol": "jBRL/BRZ", + "type": "balancerDeposit", + "visible": false, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "9b09afe5-c740-4cd7-a247-4fe4950a7f33", + "active": true, + "address": "0xcd78A20c597E367A4e478a2411cEB790604D7c8F", + "callParams": { + "poolId": "0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22" + }, + "color": "#049c3c", + "decimals": 18, + "linkedAssets": [ + { + "assetId": "8634b650-20fe-4f9e-8310-6672b38ea0ce", + "fraction": 0 + }, + { + "assetId": "d604439e-d464-4df5-bed1-66815b348cab", + "fraction": 1 + } + ], + "name": "maticX/WMATIC", + "chainId": 137, + "symbol": "maticX/WMATIC", + "type": "balancerDeposit", + "visible": false, + "allowSlot": 1, + "balanceSlot": 0 + } +] diff --git a/data/assets/137/beefyDeposit.json b/data/assets/137/beefyDeposit.json new file mode 100644 index 0000000..5db9f32 --- /dev/null +++ b/data/assets/137/beefyDeposit.json @@ -0,0 +1,82 @@ +[ + { + "id": "fecfd33d-e6a7-476b-89cb-910a0058fa48", + "name": "beefy.finance", + "chainId": 137, + "active": true, + "address": "0xfEcf784F48125ccb7d8855cdda7C5ED6b5024Cb3", + "color": "#c5bcb0", + "decimals": 18, + "symbol": "BIFI", + "type": "beefyDeposit", + "visible": false, + "allowSlot": 1, + "balanceSlot": 0, + "linkedAssets": [ + { + "assetId": "27f50305-72b0-4910-87f7-4b052054e377", + "fraction": 1 + } + ] + }, + { + "id": "7aef4761-daff-4a50-8d56-c3e4393b1c25", + "name": "Gains Network", + "chainId": 137, + "active": true, + "address": "0xf2d0557101bEA0Eb2879151DC08d7a2603588BDe", + "color": "#00D1A8", + "decimals": 18, + "symbol": "GNS", + "type": "beefyDeposit", + "visible": true, + "allowSlot": 52, + "balanceSlot": 51, + "linkedAssets": [ + { + "assetId": "170c2077-1b4a-45e4-9a18-8ce371c63db5", + "fraction": 1 + } + ] + }, + { + "id": "e7a63d19-c2c4-491c-b154-4063fe0fb479", + "name": "Quickswap", + "chainId": 137, + "active": true, + "address": "0x659418cc3cf755F5367a51aDb586a7F770Da6d29", + "color": "#408ac9", + "decimals": 18, + "symbol": "QUICK", + "type": "beefyDeposit", + "visible": false, + "allowSlot": 1, + "balanceSlot": 0, + "linkedAssets": [ + { + "assetId": "85d42621-43a2-4189-930f-9b1ff0cf74f4", + "fraction": 1 + } + ] + }, + { + "id": "37819023-9c6a-4848-8cf5-24a95350f001", + "name": "Quickswap", + "chainId": 137, + "active": true, + "address": "0x1A723371f9dc30653dafd826B60d9335bf867E35", + "color": "#408ac9", + "decimals": 18, + "symbol": "QUICK", + "type": "beefyDeposit", + "visible": true, + "allowSlot": 1, + "balanceSlot": 0, + "linkedAssets": [ + { + "assetId": "d35b7aaf-a2ff-44e0-a3df-cdc702ed71ba", + "fraction": 1 + } + ] + } +] diff --git a/data/assets.json b/data/assets/137/gammaDeposit.json similarity index 58% rename from data/assets.json rename to data/assets/137/gammaDeposit.json index a5ba9e1..ac90fa2 100644 --- a/data/assets.json +++ b/data/assets/137/gammaDeposit.json @@ -1,1656 +1,4 @@ [ - { - "id": "389d84c3-9095-4b00-b01a-18948b9ada39", - "name": "Aave", - "chainId": 137, - "active": true, - "address": "0xD6DF932A45C0f255f85145f286eA0b292B21C90B", - "color": "#8a77a8", - "decimals": 18, - "symbol": "AAVE", - "type": "token", - "visible": true, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "babfc3f7-41ae-4ad5-954e-1cbf7198cc67", - "name": "Aavegotchi", - "chainId": 137, - "active": true, - "address": "0x385Eeac5cB85A38A9a07A70c73e0a3271CfB54A7", - "color": "#fc34f4", - "decimals": 18, - "symbol": "GHST", - "type": "token", - "visible": true, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "054c5826-a523-45ac-b58e-4d35735279e5", - "name": "Adamant", - "chainId": 137, - "active": true, - "address": "0xc3FdbadC7c795EF1D6Ba111e06fF8F16A20Ea539", - "color": "#546454", - "decimals": 18, - "symbol": "ADDY", - "type": "token", - "visible": true, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "495ceb23-c007-4b2e-8159-60cf41687925", - "name": "Adshares", - "chainId": 137, - "active": true, - "address": "0x598e49f01bEfeB1753737934a5b11fea9119C796", - "color": "#5cb4fb", - "decimals": 11, - "symbol": "ADS", - "type": "token", - "visible": true, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "1b7948c6-1868-4cca-8030-f3e1cd447dc7", - "name": "ANKR ", - "chainId": 137, - "active": true, - "address": "0x101A023270368c0D50BFfb62780F4aFd4ea79C35", - "color": "#CCCCCC", - "decimals": 18, - "symbol": "ANKR", - "type": "token", - "visible": false, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "0fcb1b10-2c6a-43e9-a238-83f317d9eaed", - "name": "Ankr Staked MATIC", - "chainId": 137, - "active": true, - "address": "0x0E9b89007eEE9c958c0EDA24eF70723C2C93dD58", - "color": "#CCCCCC", - "decimals": 18, - "symbol": "ankrMATIC", - "type": "token", - "visible": false, - "allowSlot": 4, - "balanceSlot": 3 - }, - { - "id": "9d046103-4451-4ce9-bbce-72eb86d007f9", - "name": "ApeSwap", - "chainId": 137, - "active": true, - "address": "0x5d47bAbA0d66083C52009271faF3F50DCc01023C", - "color": "#FBF5E6", - "decimals": 18, - "symbol": "BANANA", - "type": "token", - "visible": true, - "allowSlot": 16, - "balanceSlot": 2 - }, - { - "id": "db6816bd-95c3-4615-b945-0e9074fcc69f", - "name": "Avalanche Token", - "chainId": 137, - "active": true, - "address": "0x2C89bbc92BD86F8075d1DEcc58C7F4E0107f286b", - "color": "#ec4444", - "decimals": 18, - "symbol": "AVAX", - "type": "token", - "visible": true, - "allowSlot": 2, - "balanceSlot": 1 - }, - { - "id": "c2335d82-0634-4c34-ba27-6e8e0f4901b8", - "name": "Axelar", - "chainId": 137, - "active": true, - "address": "0x6e4E624106Cb12E168E6533F8ec7c82263358940", - "color": "#CCCCCC", - "decimals": 6, - "symbol": "AXL", - "type": "token", - "visible": false, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "8f4534be-391f-438b-a48e-7a637b87e9d2", - "name": "Axelar Wrapped PEPE", - "chainId": 137, - "active": true, - "address": "0x8baE3F5Eb10F39663E57Be19741FD9ccEF0E113a", - "color": "#478C40", - "decimals": 18, - "symbol": "axlPEPE", - "type": "token", - "visible": true, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "4910e779-593e-41db-9c5a-bbf5c62f0066", - "name": "Axelar Wrapped USDC", - "chainId": 137, - "active": true, - "address": "0x750e4C4984a9e0f12978eA6742Bc1c5D248f40ed", - "color": "#2775ca", - "decimals": 6, - "symbol": "axlUSDC", - "type": "token", - "visible": false, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "6fdd3fc4-3844-4760-9aa1-184f2a7e1283", - "name": "Balancer", - "chainId": 137, - "active": true, - "address": "0x9a71012B13CA4d3D0Cdc72A177DF3ef03b0E76A3", - "color": "#040404", - "decimals": 18, - "symbol": "BAL", - "type": "token", - "visible": true, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "27f50305-72b0-4910-87f7-4b052054e377", - "name": "beefy.finance", - "chainId": 137, - "active": true, - "address": "0xFbdd194376de19a88118e84E279b977f165d01b8", - "color": "#c5bcb0", - "decimals": 18, - "symbol": "BIFI", - "type": "token", - "visible": false, - "allowSlot": 16, - "balanceSlot": 2 - }, - { - "id": "76e76c54-a6cf-4dc6-a6eb-e5055ce7c6b8", - "name": "Bella", - "chainId": 137, - "active": true, - "address": "0x28C388FB1F4fa9F9eB445f0579666849EE5eeb42", - "color": "#00b2f9", - "decimals": 18, - "symbol": "BEL", - "type": "token", - "visible": false, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "1ef7dff2-82a6-48e0-9572-b84a6227c4d7", - "name": "Binance", - "chainId": 137, - "active": true, - "address": "0xA649325Aa7C5093d12D6F98EB4378deAe68CE23F", - "color": "#000000", - "decimals": 18, - "symbol": "BNB", - "type": "token", - "visible": false, - "allowSlot": 16, - "balanceSlot": 2 - }, - { - "id": "7e81d4ac-4d90-4f4d-ae40-cab154e272b2", - "name": "Binance Token", - "chainId": 137, - "active": true, - "address": "0x5c4b7CCBF908E64F32e12c6650ec0C96d717f03F", - "color": "#f4bc2c", - "decimals": 18, - "symbol": "BNB", - "type": "token", - "visible": false, - "allowSlot": 2, - "balanceSlot": 1 - }, - { - "id": "184d8594-cc17-4557-9e2b-026793076858", - "name": "BOB", - "chainId": 137, - "active": true, - "address": "0xB0B195aEFA3650A6908f15CdaC7D92F8a5791B0B", - "color": "#468af0", - "decimals": 18, - "symbol": "BOB", - "type": "token", - "visible": false, - "allowSlot": 2, - "balanceSlot": 1 - }, - { - "id": "8b695641-93b0-4c83-929b-409b646cf5e5", - "name": "Brazilian Digital Token (old)", - "chainId": 137, - "active": true, - "address": "0x491a4eB4f1FC3BfF8E1d2FC856a6A46663aD556f", - "color": "#00923E", - "decimals": 4, - "symbol": "BRZ (old)", - "type": "token", - "visible": true, - "allowSlot": 3, - "balanceSlot": 2 - }, - { - "id": "578aa621-59d8-4c4c-ad01-891f50769f4a", - "name": "BRZ Token (new)", - "chainId": 137, - "active": true, - "address": "0x4eD141110F6EeeAbA9A1df36d8c26f684d2475Dc", - "color": "#00923E", - "decimals": 4, - "symbol": "BRZ (new)", - "type": "token", - "visible": true, - "allowSlot": 3, - "balanceSlot": 2 - }, - { - "id": "2376e258-b097-4aa1-b1bc-e550e0049bc6", - "name": "BRLA Token", - "chainId": 137, - "active": true, - "address": "0xE6A537a407488807F0bbeb0038B79004f19DDDFb", - "color": "#00923E", - "decimals": 18, - "symbol": "BRLA", - "type": "token", - "visible": true, - "allowSlot": 52, - "balanceSlot": 51 - }, - { - "id": "366efbaa-66b8-43ae-9afc-c12bc48cbcee", - "name": "Celsius", - "chainId": 137, - "active": true, - "address": "0xD85d1e945766Fea5Eda9103F918Bd915FbCa63E6", - "color": "#f39e45", - "decimals": 4, - "symbol": "CEL", - "type": "token", - "visible": false, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "b2c4298e-b4c4-46ee-84fd-6cb598c1309d", - "name": "ChainGuardians Governance Token", - "chainId": 137, - "active": true, - "address": "0x2Ab4f9aC80F33071211729e45Cfc346C1f8446d5", - "color": "#252526", - "decimals": 18, - "symbol": "CGG", - "type": "token", - "visible": true, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "e4be18c2-c20b-4e17-9c17-947dc07cc053", - "name": "ChainLink", - "chainId": 137, - "active": true, - "address": "0x53E0bca35eC356BD5ddDFebbD1Fc0fD03FaBad39", - "color": "#2753d8", - "decimals": 18, - "symbol": "LINK", - "type": "token", - "visible": true, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "ab5e09e4-e741-43c4-85c1-e0e0795f0c54", - "name": "Clearpool", - "chainId": 137, - "active": true, - "address": "0xb08b3603C5F2629eF83510E6049eDEeFdc3A2D91", - "color": "#f8f8f8", - "decimals": 18, - "symbol": "CPOOL", - "type": "token", - "visible": false, - "allowSlot": 1, - "balanceSlot": 2 - }, - { - "id": "879cfe80-daaf-4a2a-995c-7012a5899462", - "name": "Coinbase Staked ETH", - "chainId": 137, - "active": true, - "address": "0x4b4327dB1600B8B1440163F667e199CEf35385f5", - "color": "#6697ff", - "decimals": 18, - "symbol": "cbETH", - "type": "token", - "visible": false, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "113bc701-e7f7-4aac-baac-08c75ead78b6", - "name": "Crosschain IOTX", - "chainId": 137, - "active": true, - "address": "0x300211Def2a644b036A9bdd3e58159bb2074d388", - "color": "#50ad83", - "decimals": 18, - "symbol": "CIOTX", - "type": "token", - "visible": true, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "263baedc-9aca-4b01-9994-0d775ad85d1e", - "name": "Cryptomeda", - "chainId": 137, - "active": true, - "address": "0x6286A9e6f7e745A6D884561D88F94542d6715698", - "color": "#b6844d", - "decimals": 18, - "symbol": "TECH", - "type": "token", - "visible": false, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "af62d010-5df9-4eae-919c-8d6dd63fe45e", - "name": "Curve", - "chainId": 137, - "active": true, - "address": "0x172370d5Cd63279eFa6d502DAB29171933a610AF", - "color": "#1fc9db", - "decimals": 18, - "symbol": "CRV", - "type": "token", - "visible": true, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "f9a0d8c9-7524-42ed-9188-968456afcd54", - "name": "DAI", - "chainId": 137, - "active": true, - "address": "0x8f3Cf7ad23Cd3CaDbD9735AFf958023239c6A063", - "color": "#fcb934", - "decimals": 18, - "symbol": "DAI", - "type": "token", - "visible": false, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "acf9105d-ed61-4845-92ae-c28ae4fb12c7", - "name": "Davos USD", - "chainId": 137, - "active": true, - "address": "0xEC38621e72D86775a89C7422746de1f52bbA5320", - "color": "#E33767", - "decimals": 18, - "symbol": "DUSD", - "type": "token", - "visible": false, - "allowSlot": 5, - "balanceSlot": 4 - }, - { - "id": "d23c0d90-95ed-4e17-9aa5-7a2cdefd468f", - "name": "Decentraland", - "chainId": 137, - "active": true, - "address": "0xA1c57f48F0Deb89f569dFbE6E2B7f46D33606fD4", - "color": "#f3575c", - "decimals": 18, - "symbol": "MANA", - "type": "token", - "visible": true, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "cb362693-b93a-4b06-832e-4ba92c864ba1", - "name": "DEFI Top 5 Tokens", - "chainId": 137, - "active": true, - "address": "0x42435F467D33e5C4146a4E8893976ef12BBCE762", - "color": "#040404", - "decimals": 18, - "symbol": "DEFI5", - "type": "token", - "visible": false, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "ae061796-a86a-466e-9dfc-6b8d71863fc0", - "name": "Dfyn Network", - "chainId": 137, - "active": true, - "address": "0xC168E40227E4ebD8C1caE80F7a55a4F0e6D66C97", - "color": "#ffffff", - "decimals": 18, - "symbol": "DFYN", - "type": "token", - "visible": true, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "02dfb01b-5e65-4b36-8bf8-8a05c643ce7b", - "name": "Dragon QUICK", - "chainId": 137, - "active": true, - "address": "0x958d208Cdf087843e9AD98d23823d32E17d723A1", - "color": "#408ac9", - "decimals": 18, - "symbol": "dQUICK", - "type": "token", - "visible": false, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "8e7af83a-3c6a-44da-a277-5309dffdfdfa", - "name": "DSLA", - "chainId": 137, - "active": true, - "address": "0xa0E390e9ceA0D0e8cd40048ced9fA9EA10D71639", - "color": "#2196f3", - "decimals": 18, - "symbol": "DSLA", - "type": "token", - "visible": false, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "b934ce7e-f424-44a4-901d-03f1ec507ebe", - "name": "ETHA", - "chainId": 137, - "active": true, - "address": "0x59E9261255644c411AfDd00bD89162d09D862e38", - "color": "#383d5a", - "decimals": 18, - "symbol": "ETHA", - "type": "token", - "visible": false, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "4915a6c7-874c-4065-ad69-3bfa63665f11", - "name": "Ethernity Chain", - "chainId": 137, - "active": true, - "address": "0x0E50BEA95Fe001A370A4F1C220C49AEdCB982DeC", - "color": "#085e68", - "decimals": 18, - "symbol": "ERN", - "type": "token", - "visible": false, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "3d9ae5d7-4dee-4361-a4ba-3dd5c8722ad6", - "name": "Fancy Games", - "chainId": 137, - "active": true, - "address": "0x7f280daC515121DcdA3EaC69eB4C13a52392CACE", - "color": "#fa7a04", - "decimals": 18, - "symbol": "FNC", - "type": "token", - "visible": true, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "ce3effcc-123b-4400-9782-a14c70daf548", - "name": "Fear NFTs", - "chainId": 137, - "active": true, - "address": "0xa2CA40DBe72028D3Ac78B5250a8CB8c404e7Fb8C", - "color": "#060606", - "decimals": 18, - "symbol": "FEAR", - "type": "token", - "visible": false, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "e58d2fcf-fd1b-4a60-b54f-acf0a40faa29", - "name": "FireBotToken", - "chainId": 137, - "active": true, - "address": "0xD125443F38A69d776177c2B9c041f462936F8218", - "color": "#CCCCCC", - "decimals": 18, - "symbol": "FBX", - "type": "token", - "visible": false, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "170c2077-1b4a-45e4-9a18-8ce371c63db5", - "name": "Gains Network", - "chainId": 137, - "active": true, - "address": "0xE5417Af564e4bFDA1c483642db72007871397896", - "color": "#00D1A8", - "decimals": 18, - "symbol": "GNS", - "type": "token", - "visible": true, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "74ec88cd-29bd-482a-9640-8d5926915d3c", - "name": "Giddy Token", - "chainId": 137, - "active": true, - "address": "0x67eB41A14C0fe5CD701FC9d5A3D6597A72F641a6", - "color": "#CCCCCC", - "decimals": 18, - "symbol": "GIDDY", - "type": "token", - "visible": false, - "allowSlot": 102, - "balanceSlot": 101 - }, - { - "id": "f2093acb-bbb1-417c-8b4b-9b1607fb0fd7", - "name": "Hop", - "chainId": 137, - "active": true, - "address": "0xc5102fE9359FD9a28f877a67E36B0F050d81a3CC", - "color": "#CCCCCC", - "decimals": 18, - "symbol": "HOP", - "type": "token", - "visible": false, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "35ebd2f8-a863-4694-b29e-cf60e1ef6ee8", - "name": "Huobi Token", - "chainId": 137, - "active": true, - "address": "0xA731349fa468614c1698fc46ebf06Da6F380239e", - "color": "#2ca4e4", - "decimals": 18, - "symbol": "HT", - "type": "token", - "visible": false, - "allowSlot": 2, - "balanceSlot": 1 - }, - { - "id": "733806ed-7652-42bd-a103-2a5435b094e4", - "name": "iFARM", - "chainId": 137, - "active": true, - "address": "0xab0b2ddB9C7e440fAc8E140A89c0dbCBf2d7Bbff", - "color": "#e26864", - "decimals": 18, - "symbol": "iFARM", - "type": "token", - "visible": false, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "368b6aad-b4da-4e75-bd28-ae99f109feea", - "name": "Jarvis Reward Token", - "chainId": 137, - "active": true, - "address": "0x596eBE76e2DB4470966ea395B0d063aC6197A8C5", - "color": "#000000", - "decimals": 18, - "symbol": "JRT", - "type": "token", - "visible": true, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "90f159bc-b2ef-4251-a24b-a4fa7b5b97fa", - "name": "Jarvis Synthetic Brazilian Real", - "chainId": 137, - "active": true, - "address": "0xf2f77FE7b8e66571E0fca7104c4d670BF1C8d722", - "color": "#049c3c", - "decimals": 18, - "symbol": "jBRL", - "type": "token", - "visible": true, - "allowSlot": 3, - "balanceSlot": 2, - "callParams": { - "poolAddress": "0x30E97dc680Ee97Ff65B5188d34Fb4EA20B38D710", - "oracleAddress": "0xB90DA3ff54C3ED09115abf6FbA0Ff4645586af2c" - } - }, - { - "id": "38afd5a3-b20d-4696-98b3-7c72765e1454", - "name": "JRTFutures (JRT-ANGLE-NOV22)", - "chainId": 137, - "active": true, - "address": "0x63B87304fc9889Ce7356396ea959aA64850a52E7", - "color": "#000000", - "decimals": 18, - "symbol": "JRT-ANGLE-NOV22", - "type": "token", - "visible": false, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "7972f369-4159-41e4-89f2-f7ed04cabd61", - "name": "JRTFutures (JRT-NOV22)", - "chainId": 137, - "active": true, - "address": "0x5eF12a086B8A61C0f11a72b36b5EF451FA17f1f1", - "color": "#000000", - "decimals": 18, - "symbol": "JRT-NOV22", - "type": "token", - "visible": false, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "ff089f38-03d1-49ea-b104-742d464a4986", - "name": "Klima DAO", - "chainId": 137, - "active": true, - "address": "0x4e78011Ce80ee02d2c3e649Fb657E45898257815", - "color": "#080808", - "decimals": 9, - "symbol": "KLIMA", - "type": "token", - "visible": true, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "3498b499-3b70-4e83-8e6e-d60fc093cd9a", - "name": "Kommunitas", - "chainId": 137, - "active": true, - "address": "0xC004e2318722EA2b15499D6375905d75Ee5390B8", - "color": "#2c93fb", - "decimals": 8, - "symbol": "KOM", - "type": "token", - "visible": false, - "allowSlot": 2, - "balanceSlot": 0 - }, - { - "id": "92709729-bdc6-43fd-a2d1-1fe1a4788ed0", - "name": "Kyber Network Crystal", - "chainId": 137, - "active": true, - "address": "0x1C954E8fe737F99f68Fa1CCda3e51ebDB291948C", - "color": "#3ccca0", - "decimals": 18, - "symbol": "KNC", - "type": "token", - "visible": false, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "d71655d1-8131-4aed-bff0-ee8a849065b4", - "name": "Lido DAO", - "chainId": 137, - "active": true, - "address": "0xC3C7d422809852031b44ab29EEC9F1EfF2A58756", - "color": "#55aadc", - "decimals": 18, - "symbol": "LDO", - "type": "token", - "visible": true, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "87e706fe-0900-4a69-94b6-2f3f9cad73ce", - "name": "Lucidao", - "chainId": 137, - "active": true, - "address": "0xc2A45FE7d40bCAc8369371B08419DDAFd3131b4a", - "color": "#CCCCCC", - "decimals": 18, - "symbol": "LCD", - "type": "token", - "visible": false, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "c5129108-4b4d-4aa2-b75b-9d4348bd1678", - "name": "MAI", - "chainId": 137, - "active": true, - "address": "0xa3Fa99A148fA48D14Ed51d610c367C61876997F1", - "color": "#da3334", - "decimals": 18, - "symbol": "MAI", - "type": "token", - "visible": true, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "ed1afd08-8f3b-4a88-8bd4-83b763dd98fd", - "name": "Mask Network", - "chainId": 137, - "active": true, - "address": "0x2B9E7ccDF0F4e5B24757c1E1a80e311E34Cb10c7", - "color": "#2566da", - "decimals": 18, - "symbol": "MASK", - "type": "token", - "visible": true, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "8634b650-20fe-4f9e-8310-6672b38ea0ce", - "name": "MaticX", - "chainId": 137, - "active": true, - "address": "0xfa68FB4628DFF1028CFEc22b4162FCcd0d45efb6", - "color": "#000000", - "decimals": 18, - "symbol": "MaticX", - "type": "token", - "visible": false, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "7a4aea4e-4f6f-48c9-87b2-1c0169f270b0", - "name": "MIMO Parallel Governance Token (PoS)", - "chainId": 137, - "active": true, - "address": "0xADAC33f543267c4D59a8c299cF804c303BC3e4aC", - "color": "#5c3484", - "decimals": 18, - "symbol": "MIMO", - "type": "token", - "visible": false, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "8ce84b31-b530-4d2a-9a28-c95742827ed4", - "name": "MoonEdge", - "chainId": 137, - "active": true, - "address": "0x7E4c577ca35913af564ee2a24d882a4946Ec492B", - "color": "#381a6a", - "decimals": 18, - "symbol": "MOONED", - "type": "token", - "visible": true, - "allowSlot": 2, - "balanceSlot": 1 - }, - { - "id": "20979196-88df-4fd7-ba95-a8b412d9c1ff", - "name": "O3 Swap Token", - "chainId": 137, - "active": true, - "address": "0xEe9801669C6138E84bD50dEB500827b776777d28", - "color": "#22af7f", - "decimals": 18, - "symbol": "O3", - "type": "token", - "visible": false, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "bed0fc98-12c4-4530-8b50-79fb73d7e4d0", - "name": "Ocean Token", - "chainId": 137, - "active": true, - "address": "0x282d8efCe846A88B159800bd4130ad77443Fa1A1", - "color": "#141414", - "decimals": 18, - "symbol": "mOCEAN", - "type": "token", - "visible": true, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "85d42621-43a2-4189-930f-9b1ff0cf74f4", - "name": "Old Quickswap", - "chainId": 137, - "active": true, - "address": "0x831753DD7087CaC61aB5644b308642cc1c33Dc13", - "color": "#408ac9", - "decimals": 18, - "symbol": "oldQUICK", - "type": "token", - "visible": false, - "allowSlot": 1, - "balanceSlot": 2 - }, - { - "id": "aa743092-a507-4cbe-81a8-432d6a3a2a3c", - "name": "OM", - "chainId": 137, - "active": true, - "address": "0xC3Ec80343D2bae2F8E680FDADDe7C17E71E114ea", - "color": "#c91b5d", - "decimals": 18, - "symbol": "OM", - "type": "token", - "visible": true, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "03613bf0-19f1-42a7-913b-d6758c760f97", - "name": "Orbs", - "chainId": 137, - "active": true, - "address": "0x614389EaAE0A6821DC49062D56BDA3d9d45Fa2ff", - "color": "#50597f", - "decimals": 18, - "symbol": "ORBS", - "type": "token", - "visible": true, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "aef468a7-2c18-4ee8-85d3-59c4e41a7080", - "name": "pAUTO", - "chainId": 137, - "active": true, - "address": "0x7f426F6Dc648e50464a0392E60E1BB465a67E9cf", - "color": "#2d2dbc", - "decimals": 18, - "symbol": "pAUTO", - "type": "token", - "visible": false, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "24baf9c9-953e-4f2d-8859-b6c5b3c06217", - "name": "PAX Gold", - "chainId": 137, - "active": true, - "address": "0x553d3D295e0f695B9228246232eDF400ed3560B5", - "color": "#f8f8f8", - "decimals": 18, - "symbol": "PAXG", - "type": "token", - "visible": true, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "0382bb79-5383-4267-bf89-404e3453d39f", - "name": "PLOT", - "chainId": 137, - "active": true, - "address": "0xe82808eaA78339b06a691fd92E1Be79671cAd8D3", - "color": "#0c6b6c", - "decimals": 18, - "symbol": "PLOT", - "type": "token", - "visible": true, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "3d57e41a-8654-465a-ae6e-45cc9adaf54d", - "name": "PoolTogether", - "chainId": 137, - "active": true, - "address": "0x25788a1a171ec66Da6502f9975a15B609fF54CF6", - "color": "#6035c5", - "decimals": 18, - "symbol": "POOL", - "type": "token", - "visible": true, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "174920e4-f082-43d2-8484-569b9a390643", - "name": "PYR Token", - "chainId": 137, - "active": true, - "address": "0x430EF9263E76DAE63c84292C3409D61c598E9682", - "color": "#f59925", - "decimals": 18, - "symbol": "PYR", - "type": "token", - "visible": false, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "8bcdeda0-1a23-4cb4-83a1-0b4ccd8ad00c", - "name": "Qi Dao", - "chainId": 137, - "active": true, - "address": "0x580A84C73811E1839F75d86d75d88cCa0c241fF4", - "color": "#ff6b6b", - "decimals": 18, - "symbol": "QI", - "type": "token", - "visible": true, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "d35b7aaf-a2ff-44e0-a3df-cdc702ed71ba", - "name": "Quickswap", - "chainId": 137, - "active": true, - "address": "0xB5C064F955D8e7F38fE0460C556a72987494eE17", - "color": "#408ac9", - "decimals": 18, - "symbol": "QUICK", - "type": "token", - "visible": true, - "allowSlot": 1, - "balanceSlot": 2 - }, - { - "id": "f989dcf8-7254-4b02-869e-ba105339272b", - "name": "REVV", - "chainId": 137, - "active": true, - "address": "0x70c006878a5A50Ed185ac4C87d837633923De296", - "color": "#fc2b2b", - "decimals": 18, - "symbol": "REVV", - "type": "token", - "visible": false, - "allowSlot": 6, - "balanceSlot": 5 - }, - { - "id": "ba44052c-fe9a-47d4-8b12-4ea524808bcd", - "name": "Snook", - "chainId": 137, - "active": true, - "address": "0x689f8e5913C158fFB5Ac5aeb83b3C875F5d20309", - "color": "#0170b9", - "decimals": 18, - "symbol": "SNK", - "type": "token", - "visible": false, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "f590c2cc-b7f5-45a0-be0d-d75052fbffa5", - "name": "Solana", - "chainId": 137, - "active": true, - "address": "0x7DfF46370e9eA5f0Bad3C4E29711aD50062EA7A4", - "color": "#56377f", - "decimals": 18, - "symbol": "SOL", - "type": "token", - "visible": true, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "2bb04b67-dfed-40eb-921c-f1e36c2ea06a", - "name": "SportX", - "chainId": 137, - "active": true, - "address": "0x840195888Db4D6A99ED9F73FcD3B225Bb3cB1A79", - "color": "#31a983", - "decimals": 18, - "symbol": "SX", - "type": "token", - "visible": false, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "35b57015-712d-499d-9bce-4f4dd3e29d3c", - "name": "Stader", - "chainId": 137, - "active": true, - "address": "0x1d734A02eF1e1f5886e66b0673b71Af5B53ffA94", - "color": "#000000", - "decimals": 18, - "symbol": "SD", - "type": "token", - "visible": false, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "3ee2c29f-3fae-40b2-907b-8a338bbbc1c4", - "name": "StaFi", - "chainId": 137, - "active": true, - "address": "0x7A7B94F18EF6AD056CDa648588181CDA84800f94", - "color": "#0496ad", - "decimals": 18, - "symbol": "FIS", - "type": "token", - "visible": false, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "0dcb8f08-485e-46e9-bdb7-3ae52e5244e6", - "name": "StaFi rMATIC", - "chainId": 137, - "active": true, - "address": "0x9f28e2455f9FFcFac9EBD6084853417362bc5dBb", - "color": "#CCCCCC", - "decimals": 18, - "symbol": "rMATIC", - "type": "token", - "visible": false, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "819b9d1d-4885-4282-8f16-2be871c859c2", - "name": "Stake DAO Token (PoS)", - "chainId": 137, - "active": true, - "address": "0x361A5a4993493cE00f61C32d4EcCA5512b82CE90", - "color": "#000000", - "decimals": 18, - "symbol": "SDT", - "type": "token", - "visible": false, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "d21331f3-3db3-40e9-b972-ffddc5a6a795", - "name": "Staked MATIC (PoS)", - "chainId": 137, - "active": true, - "address": "0x3A58a54C066FdC0f2D55FC9C89F0415C92eBf3C4", - "color": "#000000", - "decimals": 18, - "symbol": "stMATIC", - "type": "token", - "visible": false, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "9b921908-dce7-4f32-b0ed-f04749abfcc2", - "name": "Stargate", - "chainId": 137, - "active": true, - "address": "0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590", - "color": "#000000", - "decimals": 18, - "symbol": "STG", - "type": "token", - "visible": false, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "0cd75561-8f74-471b-8ae4-256143fdbaff", - "name": "Sushi", - "chainId": 137, - "active": true, - "address": "0x0b3F868E0BE5597D5DB7fEB59E1CADBb0fdDa50a", - "color": "#7a8eb4", - "decimals": 18, - "symbol": "SUSHI", - "type": "token", - "visible": false, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "d8d311f1-f3b4-4d67-8a99-b9f42ec49c17", - "name": "Telcoin", - "chainId": 137, - "active": true, - "address": "0xdF7837DE1F2Fa4631D716CF2502f8b230F1dcc32", - "color": "#04c3fc", - "decimals": 2, - "symbol": "TEL", - "type": "token", - "visible": true, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "327372e5-b7ae-405b-9c4e-0c0989dc91d6", - "name": "The Graph", - "chainId": 137, - "active": true, - "address": "0x5fe2B58c013d7601147DcdD68C143A77499f5531", - "color": "#32297c", - "decimals": 18, - "symbol": "GRT", - "type": "token", - "visible": true, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "c1dd5c79-bd77-486c-afa4-a161c90d5464", - "name": "The Sandbox", - "chainId": 137, - "active": true, - "address": "0xBbba073C31bF03b8ACf7c28EF0738DeCF3695683", - "color": "#04acec", - "decimals": 18, - "symbol": "SAND", - "type": "token", - "visible": true, - "allowSlot": 6, - "balanceSlot": 5 - }, - { - "id": "d6c476a2-7322-439b-99ab-479b8b6d7d53", - "name": "Toucan Protocol: Base Carbon Tonne", - "chainId": 137, - "active": true, - "address": "0x2F800Db0fdb5223b3C3f354886d907A671414A7F", - "color": "#000000", - "decimals": 18, - "symbol": "BCT", - "type": "token", - "visible": false, - "allowSlot": 52, - "balanceSlot": 51 - }, - { - "id": "759f1f40-ff73-4079-9841-79eb656e19f1", - "name": "TrueUSD (PoS)", - "chainId": 137, - "active": true, - "address": "0x2e1AD108fF1D8C782fcBbB89AAd783aC49586756", - "color": "#000000", - "decimals": 18, - "symbol": "TUSD", - "type": "token", - "visible": true, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "72c7d69d-7bef-47e5-8907-4c4c6f0bd797", - "name": "Uniswap", - "chainId": 137, - "active": true, - "address": "0xb33EaAd8d922B1083446DC23f610c2567fB5180f", - "color": "#da5a94", - "decimals": 18, - "symbol": "UNI", - "type": "token", - "visible": true, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "e251ecf6-48c2-4538-afcd-fbb92424054d", - "name": "USD Coin (Bridged)", - "chainId": 137, - "active": true, - "address": "0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174", - "color": "#2775ca", - "decimals": 6, - "symbol": "USDC.e", - "type": "token", - "visible": false, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "33b90e57-ded7-4da9-92c9-6d3ed0f1c53d", - "active": true, - "address": "0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359", - "color": "#2775ca", - "decimals": 6, - "name": "USD Coin (Native)", - "chainId": 137, - "symbol": "USDC", - "type": "token", - "visible": false, - "allowSlot": 10, - "balanceSlot": 9 - }, - { - "id": "dfe40dda-5c96-4ff3-b773-386f1ca0868d", - "name": "USDT", - "chainId": 137, - "active": true, - "address": "0xc2132D05D31c914a87C6611C10748AEb04B58e8F", - "color": "#54ae93", - "decimals": 6, - "symbol": "USDT", - "type": "token", - "visible": false, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "6f4ff81c-bb37-4789-bc5f-df09af4da855", - "name": "VOXEL Token", - "chainId": 137, - "active": true, - "address": "0xd0258a3fD00f38aa8090dfee343f10A9D4d30D3F", - "color": "#CCCCCC", - "decimals": 18, - "symbol": "VOXEL", - "type": "token", - "visible": false, - "allowSlot": 2, - "balanceSlot": 1 - }, - { - "id": "01bbcecb-0122-4e07-b47d-296ff88fce3b", - "name": "WeFi", - "chainId": 137, - "active": true, - "address": "0xfFA188493C15DfAf2C206c97D8633377847b6a52", - "color": "#CCCCCC", - "decimals": 18, - "symbol": "WEFI", - "type": "token", - "visible": false, - "allowSlot": 9, - "balanceSlot": 8 - }, - { - "id": "1872923c-808d-4299-a38c-9fd59da69274", - "name": "Wombat", - "chainId": 137, - "active": true, - "address": "0x0C9c7712C83B3C70e7c5E11100D33D9401BdF9dd", - "color": "#CCCCCC", - "decimals": 18, - "symbol": "WOMBAT", - "type": "token", - "visible": false, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "41f30848-c9ae-47a7-91ab-97e722144913", - "name": "Wootrade Network", - "chainId": 137, - "active": true, - "address": "0x1B815d120B3eF02039Ee11dC2d33DE7aA4a8C603", - "color": "#000000", - "decimals": 18, - "symbol": "WOO", - "type": "token", - "visible": false, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "c3dd0031-73e1-4f24-b543-bfd3d7a0a683", - "name": "Wrapped amDAI", - "chainId": 137, - "active": true, - "address": "0xEE029120c72b0607344f35B17cdD90025e647B00", - "color": "#CCCCCC", - "decimals": 18, - "symbol": "amDAI", - "type": "token", - "visible": false, - "allowSlot": 53, - "balanceSlot": 52 - }, - { - "id": "8f2b13d0-f046-4894-9daa-ac573cfce5b9", - "name": "Wrapped amUSDC", - "chainId": 137, - "active": true, - "address": "0x221836a597948Dce8F3568E044fF123108aCc42A", - "color": "#CCCCCC", - "decimals": 6, - "symbol": "amUSDC", - "type": "token", - "visible": false, - "allowSlot": 53, - "balanceSlot": 52 - }, - { - "id": "24158fd6-b290-4f14-ac20-c778b3e0e997", - "name": "Wrapped amUSDT", - "chainId": 137, - "active": true, - "address": "0x19C60a251e525fa88Cd6f3768416a8024e98fC19", - "color": "#CCCCCC", - "decimals": 6, - "symbol": "amUSDT", - "type": "token", - "visible": false, - "allowSlot": 53, - "balanceSlot": 52 - }, - { - "id": "7eecd38c-6ec4-4032-b1bd-bbd1bb82404f", - "name": "Wrapped Bitcoin", - "chainId": 137, - "active": true, - "address": "0x1BFD67037B42Cf73acF2047067bd4F2C47D9BfD6", - "color": "#342743", - "decimals": 8, - "symbol": "WBTC", - "type": "token", - "visible": true, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "88f2647c-740e-4bbb-baed-c809302fea79", - "name": "Wrapped Ether", - "chainId": 137, - "active": true, - "address": "0x7ceB23fD6bC0adD59E62ac25578270cFf1b9f619", - "color": "#737475", - "decimals": 18, - "symbol": "WETH", - "type": "token", - "visible": true, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "79c1ac81-f9b8-45d2-bf2e-5496d0c75814", - "name": "Wrapped Liquid Stake Ether", - "chainId": 137, - "active": true, - "address": "0x03b54A6e9a984069379fae1a4fC4dBAE93B3bCCD", - "color": "#1cbc94", - "decimals": 18, - "symbol": "wstETH", - "type": "token", - "visible": false, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "98b8ff51-465c-4172-beb4-42810ec7df68", - "name": "Wrapped LUNA Token", - "chainId": 137, - "active": true, - "address": "0x24834BBEc7E39ef42f4a75EAF8E5B6486d3F0e57", - "color": "#df6a2f", - "decimals": 18, - "symbol": "LUNA", - "type": "token", - "visible": false, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "d604439e-d464-4df5-bed1-66815b348cab", - "name": "Wrapped Matic", - "chainId": 137, - "active": true, - "address": "0x0d500B1d8E8eF31E21C99d1Db9A6444d3ADf1270", - "color": "#468af0", - "decimals": 18, - "symbol": "WMATIC", - "type": "token", - "visible": false, - "allowSlot": 4, - "balanceSlot": 3 - }, - { - "id": "20527b4c-0e70-4958-9e9a-35b12d0d5168", - "name": "Wrapped USDR", - "chainId": 137, - "active": true, - "address": "0xAF0D9D65fC54de245cdA37af3d18cbEc860A4D4b", - "color": "#2c5cfb", - "decimals": 9, - "symbol": "wUSDR", - "type": "token", - "visible": false, - "allowSlot": 152, - "balanceSlot": 151 - }, - { - "id": "fdaa23f1-d85e-494f-9370-671a5b045160", - "name": "YEL Token", - "chainId": 137, - "active": true, - "address": "0xD3b71117E6C1558c1553305b44988cd944e97300", - "color": "#671499", - "decimals": 18, - "symbol": "YEL", - "type": "token", - "visible": false, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "46062b41-6661-4eae-bc11-4d4ec07b062f", - "active": true, - "address": "0x6d80113e533a2C0fe82EaBD35f1875DcEA89Ea97", - "color": "#468af0", - "decimals": 18, - "linkedAssets": [ - { - "assetId": "d604439e-d464-4df5-bed1-66815b348cab", - "fraction": 1 - } - ], - "name": "Aave Polygon WMATIC", - "chainId": 137, - "symbol": "aPolWMATIC", - "type": "aaveV3Deposit", - "visible": true, - "category": ["Lending", "Yield", "Blue chip"], - "allowSlot": 53, - "balanceSlot": 52, - "maxSize": 40 - }, - { - "id": "371b83f1-3301-4c69-b3ad-8d199c6d1774", - "active": true, - "address": "0x625e7708f30ca75bfd92586e17077590c60eb4cd", - "color": "#2775ca", - "decimals": 6, - "linkedAssets": [ - { - "assetId": "e251ecf6-48c2-4538-afcd-fbb92424054d", - "fraction": 1 - } - ], - "name": "Aave Polygon USDC", - "chainId": 137, - "symbol": "aPolUSDC", - "type": "aaveV3Deposit", - "visible": true, - "allowSlot": 53, - "balanceSlot": 52, - "maxSize": 40 - }, - { - "id": "03f36f17-bbc2-4d8d-b0b2-9ce0f534d708", - "active": true, - "address": "0x42942cDeC85078Cf0e28e9CB5ACd40CB53997Ed6", - "callParams": { - "poolId": "0x42942cdec85078cf0e28e9cb5acd40cb53997ed6000000000000000000000bea", - "selfIndex": 1 - }, - "color": "#049c3c", - "decimals": 18, - "linkedAssets": [ - { - "assetId": "90f159bc-b2ef-4251-a24b-a4fa7b5b97fa", - "fraction": 0 - }, - { - "assetId": "578aa621-59d8-4c4c-ad01-891f50769f4a", - "fraction": 1 - } - ], - "name": "jBRL/BRZ", - "chainId": 137, - "symbol": "jBRL/BRZ", - "type": "balancerDeposit", - "visible": false, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "9b09afe5-c740-4cd7-a247-4fe4950a7f33", - "active": true, - "address": "0xcd78A20c597E367A4e478a2411cEB790604D7c8F", - "callParams": { - "poolId": "0xcd78a20c597e367a4e478a2411ceb790604d7c8f000000000000000000000c22" - }, - "color": "#049c3c", - "decimals": 18, - "linkedAssets": [ - { - "assetId": "8634b650-20fe-4f9e-8310-6672b38ea0ce", - "fraction": 0 - }, - { - "assetId": "d604439e-d464-4df5-bed1-66815b348cab", - "fraction": 1 - } - ], - "name": "maticX/WMATIC", - "chainId": 137, - "symbol": "maticX/WMATIC", - "type": "balancerDeposit", - "visible": false, - "allowSlot": 1, - "balanceSlot": 0 - }, - { - "id": "fecfd33d-e6a7-476b-89cb-910a0058fa48", - "name": "beefy.finance", - "chainId": 137, - "active": true, - "address": "0xfEcf784F48125ccb7d8855cdda7C5ED6b5024Cb3", - "color": "#c5bcb0", - "decimals": 18, - "symbol": "BIFI", - "type": "beefyDeposit", - "visible": false, - "allowSlot": 1, - "balanceSlot": 0, - "linkedAssets": [ - { - "assetId": "27f50305-72b0-4910-87f7-4b052054e377", - "fraction": 1 - } - ] - }, - { - "id": "7aef4761-daff-4a50-8d56-c3e4393b1c25", - "name": "Gains Network", - "chainId": 137, - "active": true, - "address": "0xf2d0557101bEA0Eb2879151DC08d7a2603588BDe", - "color": "#00D1A8", - "decimals": 18, - "symbol": "GNS", - "type": "beefyDeposit", - "visible": true, - "allowSlot": 52, - "balanceSlot": 51, - "linkedAssets": [ - { - "assetId": "170c2077-1b4a-45e4-9a18-8ce371c63db5", - "fraction": 1 - } - ] - }, - { - "id": "e7a63d19-c2c4-491c-b154-4063fe0fb479", - "name": "Quickswap", - "chainId": 137, - "active": true, - "address": "0x659418cc3cf755F5367a51aDb586a7F770Da6d29", - "color": "#408ac9", - "decimals": 18, - "symbol": "QUICK", - "type": "beefyDeposit", - "visible": false, - "allowSlot": 1, - "balanceSlot": 0, - "linkedAssets": [ - { - "assetId": "85d42621-43a2-4189-930f-9b1ff0cf74f4", - "fraction": 1 - } - ] - }, - { - "id": "37819023-9c6a-4848-8cf5-24a95350f001", - "name": "Quickswap", - "chainId": 137, - "active": true, - "address": "0x1A723371f9dc30653dafd826B60d9335bf867E35", - "color": "#408ac9", - "decimals": 18, - "symbol": "QUICK", - "type": "beefyDeposit", - "visible": true, - "allowSlot": 1, - "balanceSlot": 0, - "linkedAssets": [ - { - "assetId": "d35b7aaf-a2ff-44e0-a3df-cdc702ed71ba", - "fraction": 1 - } - ] - }, { "id": "256d3084-4250-4c93-98f9-3c26cfaf4b1e", "name": "cbETH/WETH", diff --git a/data/assets/137/token.json b/data/assets/137/token.json new file mode 100644 index 0000000..802cb0d --- /dev/null +++ b/data/assets/137/token.json @@ -0,0 +1,1476 @@ +[ + { + "id": "389d84c3-9095-4b00-b01a-18948b9ada39", + "name": "Aave", + "chainId": 137, + "active": true, + "address": "0xD6DF932A45C0f255f85145f286eA0b292B21C90B", + "color": "#8a77a8", + "decimals": 18, + "symbol": "AAVE", + "type": "token", + "visible": true, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "babfc3f7-41ae-4ad5-954e-1cbf7198cc67", + "name": "Aavegotchi", + "chainId": 137, + "active": true, + "address": "0x385Eeac5cB85A38A9a07A70c73e0a3271CfB54A7", + "color": "#fc34f4", + "decimals": 18, + "symbol": "GHST", + "type": "token", + "visible": true, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "054c5826-a523-45ac-b58e-4d35735279e5", + "name": "Adamant", + "chainId": 137, + "active": true, + "address": "0xc3FdbadC7c795EF1D6Ba111e06fF8F16A20Ea539", + "color": "#546454", + "decimals": 18, + "symbol": "ADDY", + "type": "token", + "visible": true, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "495ceb23-c007-4b2e-8159-60cf41687925", + "name": "Adshares", + "chainId": 137, + "active": true, + "address": "0x598e49f01bEfeB1753737934a5b11fea9119C796", + "color": "#5cb4fb", + "decimals": 11, + "symbol": "ADS", + "type": "token", + "visible": true, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "1b7948c6-1868-4cca-8030-f3e1cd447dc7", + "name": "ANKR ", + "chainId": 137, + "active": true, + "address": "0x101A023270368c0D50BFfb62780F4aFd4ea79C35", + "color": "#CCCCCC", + "decimals": 18, + "symbol": "ANKR", + "type": "token", + "visible": false, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "0fcb1b10-2c6a-43e9-a238-83f317d9eaed", + "name": "Ankr Staked MATIC", + "chainId": 137, + "active": true, + "address": "0x0E9b89007eEE9c958c0EDA24eF70723C2C93dD58", + "color": "#CCCCCC", + "decimals": 18, + "symbol": "ankrMATIC", + "type": "token", + "visible": false, + "allowSlot": 4, + "balanceSlot": 3 + }, + { + "id": "9d046103-4451-4ce9-bbce-72eb86d007f9", + "name": "ApeSwap", + "chainId": 137, + "active": true, + "address": "0x5d47bAbA0d66083C52009271faF3F50DCc01023C", + "color": "#FBF5E6", + "decimals": 18, + "symbol": "BANANA", + "type": "token", + "visible": true, + "allowSlot": 16, + "balanceSlot": 2 + }, + { + "id": "db6816bd-95c3-4615-b945-0e9074fcc69f", + "name": "Avalanche Token", + "chainId": 137, + "active": true, + "address": "0x2C89bbc92BD86F8075d1DEcc58C7F4E0107f286b", + "color": "#ec4444", + "decimals": 18, + "symbol": "AVAX", + "type": "token", + "visible": true, + "allowSlot": 2, + "balanceSlot": 1 + }, + { + "id": "c2335d82-0634-4c34-ba27-6e8e0f4901b8", + "name": "Axelar", + "chainId": 137, + "active": true, + "address": "0x6e4E624106Cb12E168E6533F8ec7c82263358940", + "color": "#CCCCCC", + "decimals": 6, + "symbol": "AXL", + "type": "token", + "visible": false, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "8f4534be-391f-438b-a48e-7a637b87e9d2", + "name": "Axelar Wrapped PEPE", + "chainId": 137, + "active": true, + "address": "0x8baE3F5Eb10F39663E57Be19741FD9ccEF0E113a", + "color": "#478C40", + "decimals": 18, + "symbol": "axlPEPE", + "type": "token", + "visible": true, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "4910e779-593e-41db-9c5a-bbf5c62f0066", + "name": "Axelar Wrapped USDC", + "chainId": 137, + "active": true, + "address": "0x750e4C4984a9e0f12978eA6742Bc1c5D248f40ed", + "color": "#2775ca", + "decimals": 6, + "symbol": "axlUSDC", + "type": "token", + "visible": false, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "6fdd3fc4-3844-4760-9aa1-184f2a7e1283", + "name": "Balancer", + "chainId": 137, + "active": true, + "address": "0x9a71012B13CA4d3D0Cdc72A177DF3ef03b0E76A3", + "color": "#040404", + "decimals": 18, + "symbol": "BAL", + "type": "token", + "visible": true, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "27f50305-72b0-4910-87f7-4b052054e377", + "name": "beefy.finance", + "chainId": 137, + "active": true, + "address": "0xFbdd194376de19a88118e84E279b977f165d01b8", + "color": "#c5bcb0", + "decimals": 18, + "symbol": "BIFI", + "type": "token", + "visible": false, + "allowSlot": 16, + "balanceSlot": 2 + }, + { + "id": "76e76c54-a6cf-4dc6-a6eb-e5055ce7c6b8", + "name": "Bella", + "chainId": 137, + "active": true, + "address": "0x28C388FB1F4fa9F9eB445f0579666849EE5eeb42", + "color": "#00b2f9", + "decimals": 18, + "symbol": "BEL", + "type": "token", + "visible": false, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "1ef7dff2-82a6-48e0-9572-b84a6227c4d7", + "name": "Binance", + "chainId": 137, + "active": true, + "address": "0xA649325Aa7C5093d12D6F98EB4378deAe68CE23F", + "color": "#000000", + "decimals": 18, + "symbol": "BNB", + "type": "token", + "visible": false, + "allowSlot": 16, + "balanceSlot": 2 + }, + { + "id": "7e81d4ac-4d90-4f4d-ae40-cab154e272b2", + "name": "Binance Token", + "chainId": 137, + "active": true, + "address": "0x5c4b7CCBF908E64F32e12c6650ec0C96d717f03F", + "color": "#f4bc2c", + "decimals": 18, + "symbol": "BNB", + "type": "token", + "visible": false, + "allowSlot": 2, + "balanceSlot": 1 + }, + { + "id": "184d8594-cc17-4557-9e2b-026793076858", + "name": "BOB", + "chainId": 137, + "active": true, + "address": "0xB0B195aEFA3650A6908f15CdaC7D92F8a5791B0B", + "color": "#468af0", + "decimals": 18, + "symbol": "BOB", + "type": "token", + "visible": false, + "allowSlot": 2, + "balanceSlot": 1 + }, + { + "id": "8b695641-93b0-4c83-929b-409b646cf5e5", + "name": "Brazilian Digital Token (old)", + "chainId": 137, + "active": true, + "address": "0x491a4eB4f1FC3BfF8E1d2FC856a6A46663aD556f", + "color": "#00923E", + "decimals": 4, + "symbol": "BRZ (old)", + "type": "token", + "visible": true, + "allowSlot": 3, + "balanceSlot": 2 + }, + { + "id": "578aa621-59d8-4c4c-ad01-891f50769f4a", + "name": "BRZ Token (new)", + "chainId": 137, + "active": true, + "address": "0x4eD141110F6EeeAbA9A1df36d8c26f684d2475Dc", + "color": "#00923E", + "decimals": 4, + "symbol": "BRZ (new)", + "type": "token", + "visible": true, + "allowSlot": 3, + "balanceSlot": 2 + }, + { + "id": "2376e258-b097-4aa1-b1bc-e550e0049bc6", + "name": "BRLA Token", + "chainId": 137, + "active": true, + "address": "0xE6A537a407488807F0bbeb0038B79004f19DDDFb", + "color": "#00923E", + "decimals": 18, + "symbol": "BRLA", + "type": "token", + "visible": true, + "allowSlot": 52, + "balanceSlot": 51 + }, + { + "id": "366efbaa-66b8-43ae-9afc-c12bc48cbcee", + "name": "Celsius", + "chainId": 137, + "active": true, + "address": "0xD85d1e945766Fea5Eda9103F918Bd915FbCa63E6", + "color": "#f39e45", + "decimals": 4, + "symbol": "CEL", + "type": "token", + "visible": false, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "b2c4298e-b4c4-46ee-84fd-6cb598c1309d", + "name": "ChainGuardians Governance Token", + "chainId": 137, + "active": true, + "address": "0x2Ab4f9aC80F33071211729e45Cfc346C1f8446d5", + "color": "#252526", + "decimals": 18, + "symbol": "CGG", + "type": "token", + "visible": true, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "e4be18c2-c20b-4e17-9c17-947dc07cc053", + "name": "ChainLink", + "chainId": 137, + "active": true, + "address": "0x53E0bca35eC356BD5ddDFebbD1Fc0fD03FaBad39", + "color": "#2753d8", + "decimals": 18, + "symbol": "LINK", + "type": "token", + "visible": true, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "ab5e09e4-e741-43c4-85c1-e0e0795f0c54", + "name": "Clearpool", + "chainId": 137, + "active": true, + "address": "0xb08b3603C5F2629eF83510E6049eDEeFdc3A2D91", + "color": "#f8f8f8", + "decimals": 18, + "symbol": "CPOOL", + "type": "token", + "visible": false, + "allowSlot": 1, + "balanceSlot": 2 + }, + { + "id": "879cfe80-daaf-4a2a-995c-7012a5899462", + "name": "Coinbase Staked ETH", + "chainId": 137, + "active": true, + "address": "0x4b4327dB1600B8B1440163F667e199CEf35385f5", + "color": "#6697ff", + "decimals": 18, + "symbol": "cbETH", + "type": "token", + "visible": false, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "113bc701-e7f7-4aac-baac-08c75ead78b6", + "name": "Crosschain IOTX", + "chainId": 137, + "active": true, + "address": "0x300211Def2a644b036A9bdd3e58159bb2074d388", + "color": "#50ad83", + "decimals": 18, + "symbol": "CIOTX", + "type": "token", + "visible": true, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "263baedc-9aca-4b01-9994-0d775ad85d1e", + "name": "Cryptomeda", + "chainId": 137, + "active": true, + "address": "0x6286A9e6f7e745A6D884561D88F94542d6715698", + "color": "#b6844d", + "decimals": 18, + "symbol": "TECH", + "type": "token", + "visible": false, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "af62d010-5df9-4eae-919c-8d6dd63fe45e", + "name": "Curve", + "chainId": 137, + "active": true, + "address": "0x172370d5Cd63279eFa6d502DAB29171933a610AF", + "color": "#1fc9db", + "decimals": 18, + "symbol": "CRV", + "type": "token", + "visible": true, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "f9a0d8c9-7524-42ed-9188-968456afcd54", + "name": "DAI", + "chainId": 137, + "active": true, + "address": "0x8f3Cf7ad23Cd3CaDbD9735AFf958023239c6A063", + "color": "#fcb934", + "decimals": 18, + "symbol": "DAI", + "type": "token", + "visible": false, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "acf9105d-ed61-4845-92ae-c28ae4fb12c7", + "name": "Davos USD", + "chainId": 137, + "active": true, + "address": "0xEC38621e72D86775a89C7422746de1f52bbA5320", + "color": "#E33767", + "decimals": 18, + "symbol": "DUSD", + "type": "token", + "visible": false, + "allowSlot": 5, + "balanceSlot": 4 + }, + { + "id": "d23c0d90-95ed-4e17-9aa5-7a2cdefd468f", + "name": "Decentraland", + "chainId": 137, + "active": true, + "address": "0xA1c57f48F0Deb89f569dFbE6E2B7f46D33606fD4", + "color": "#f3575c", + "decimals": 18, + "symbol": "MANA", + "type": "token", + "visible": true, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "cb362693-b93a-4b06-832e-4ba92c864ba1", + "name": "DEFI Top 5 Tokens", + "chainId": 137, + "active": true, + "address": "0x42435F467D33e5C4146a4E8893976ef12BBCE762", + "color": "#040404", + "decimals": 18, + "symbol": "DEFI5", + "type": "token", + "visible": false, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "ae061796-a86a-466e-9dfc-6b8d71863fc0", + "name": "Dfyn Network", + "chainId": 137, + "active": true, + "address": "0xC168E40227E4ebD8C1caE80F7a55a4F0e6D66C97", + "color": "#ffffff", + "decimals": 18, + "symbol": "DFYN", + "type": "token", + "visible": true, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "02dfb01b-5e65-4b36-8bf8-8a05c643ce7b", + "name": "Dragon QUICK", + "chainId": 137, + "active": true, + "address": "0x958d208Cdf087843e9AD98d23823d32E17d723A1", + "color": "#408ac9", + "decimals": 18, + "symbol": "dQUICK", + "type": "token", + "visible": false, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "8e7af83a-3c6a-44da-a277-5309dffdfdfa", + "name": "DSLA", + "chainId": 137, + "active": true, + "address": "0xa0E390e9ceA0D0e8cd40048ced9fA9EA10D71639", + "color": "#2196f3", + "decimals": 18, + "symbol": "DSLA", + "type": "token", + "visible": false, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "b934ce7e-f424-44a4-901d-03f1ec507ebe", + "name": "ETHA", + "chainId": 137, + "active": true, + "address": "0x59E9261255644c411AfDd00bD89162d09D862e38", + "color": "#383d5a", + "decimals": 18, + "symbol": "ETHA", + "type": "token", + "visible": false, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "4915a6c7-874c-4065-ad69-3bfa63665f11", + "name": "Ethernity Chain", + "chainId": 137, + "active": true, + "address": "0x0E50BEA95Fe001A370A4F1C220C49AEdCB982DeC", + "color": "#085e68", + "decimals": 18, + "symbol": "ERN", + "type": "token", + "visible": false, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "3d9ae5d7-4dee-4361-a4ba-3dd5c8722ad6", + "name": "Fancy Games", + "chainId": 137, + "active": true, + "address": "0x7f280daC515121DcdA3EaC69eB4C13a52392CACE", + "color": "#fa7a04", + "decimals": 18, + "symbol": "FNC", + "type": "token", + "visible": true, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "ce3effcc-123b-4400-9782-a14c70daf548", + "name": "Fear NFTs", + "chainId": 137, + "active": true, + "address": "0xa2CA40DBe72028D3Ac78B5250a8CB8c404e7Fb8C", + "color": "#060606", + "decimals": 18, + "symbol": "FEAR", + "type": "token", + "visible": false, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "e58d2fcf-fd1b-4a60-b54f-acf0a40faa29", + "name": "FireBotToken", + "chainId": 137, + "active": true, + "address": "0xD125443F38A69d776177c2B9c041f462936F8218", + "color": "#CCCCCC", + "decimals": 18, + "symbol": "FBX", + "type": "token", + "visible": false, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "170c2077-1b4a-45e4-9a18-8ce371c63db5", + "name": "Gains Network", + "chainId": 137, + "active": true, + "address": "0xE5417Af564e4bFDA1c483642db72007871397896", + "color": "#00D1A8", + "decimals": 18, + "symbol": "GNS", + "type": "token", + "visible": true, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "74ec88cd-29bd-482a-9640-8d5926915d3c", + "name": "Giddy Token", + "chainId": 137, + "active": true, + "address": "0x67eB41A14C0fe5CD701FC9d5A3D6597A72F641a6", + "color": "#CCCCCC", + "decimals": 18, + "symbol": "GIDDY", + "type": "token", + "visible": false, + "allowSlot": 102, + "balanceSlot": 101 + }, + { + "id": "f2093acb-bbb1-417c-8b4b-9b1607fb0fd7", + "name": "Hop", + "chainId": 137, + "active": true, + "address": "0xc5102fE9359FD9a28f877a67E36B0F050d81a3CC", + "color": "#CCCCCC", + "decimals": 18, + "symbol": "HOP", + "type": "token", + "visible": false, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "35ebd2f8-a863-4694-b29e-cf60e1ef6ee8", + "name": "Huobi Token", + "chainId": 137, + "active": true, + "address": "0xA731349fa468614c1698fc46ebf06Da6F380239e", + "color": "#2ca4e4", + "decimals": 18, + "symbol": "HT", + "type": "token", + "visible": false, + "allowSlot": 2, + "balanceSlot": 1 + }, + { + "id": "733806ed-7652-42bd-a103-2a5435b094e4", + "name": "iFARM", + "chainId": 137, + "active": true, + "address": "0xab0b2ddB9C7e440fAc8E140A89c0dbCBf2d7Bbff", + "color": "#e26864", + "decimals": 18, + "symbol": "iFARM", + "type": "token", + "visible": false, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "368b6aad-b4da-4e75-bd28-ae99f109feea", + "name": "Jarvis Reward Token", + "chainId": 137, + "active": true, + "address": "0x596eBE76e2DB4470966ea395B0d063aC6197A8C5", + "color": "#000000", + "decimals": 18, + "symbol": "JRT", + "type": "token", + "visible": true, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "90f159bc-b2ef-4251-a24b-a4fa7b5b97fa", + "name": "Jarvis Synthetic Brazilian Real", + "chainId": 137, + "active": true, + "address": "0xf2f77FE7b8e66571E0fca7104c4d670BF1C8d722", + "color": "#049c3c", + "decimals": 18, + "symbol": "jBRL", + "type": "token", + "visible": true, + "allowSlot": 3, + "balanceSlot": 2, + "callParams": { + "poolAddress": "0x30E97dc680Ee97Ff65B5188d34Fb4EA20B38D710", + "oracleAddress": "0xB90DA3ff54C3ED09115abf6FbA0Ff4645586af2c" + } + }, + { + "id": "38afd5a3-b20d-4696-98b3-7c72765e1454", + "name": "JRTFutures (JRT-ANGLE-NOV22)", + "chainId": 137, + "active": true, + "address": "0x63B87304fc9889Ce7356396ea959aA64850a52E7", + "color": "#000000", + "decimals": 18, + "symbol": "JRT-ANGLE-NOV22", + "type": "token", + "visible": false, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "7972f369-4159-41e4-89f2-f7ed04cabd61", + "name": "JRTFutures (JRT-NOV22)", + "chainId": 137, + "active": true, + "address": "0x5eF12a086B8A61C0f11a72b36b5EF451FA17f1f1", + "color": "#000000", + "decimals": 18, + "symbol": "JRT-NOV22", + "type": "token", + "visible": false, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "ff089f38-03d1-49ea-b104-742d464a4986", + "name": "Klima DAO", + "chainId": 137, + "active": true, + "address": "0x4e78011Ce80ee02d2c3e649Fb657E45898257815", + "color": "#080808", + "decimals": 9, + "symbol": "KLIMA", + "type": "token", + "visible": true, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "3498b499-3b70-4e83-8e6e-d60fc093cd9a", + "name": "Kommunitas", + "chainId": 137, + "active": true, + "address": "0xC004e2318722EA2b15499D6375905d75Ee5390B8", + "color": "#2c93fb", + "decimals": 8, + "symbol": "KOM", + "type": "token", + "visible": false, + "allowSlot": 2, + "balanceSlot": 0 + }, + { + "id": "92709729-bdc6-43fd-a2d1-1fe1a4788ed0", + "name": "Kyber Network Crystal", + "chainId": 137, + "active": true, + "address": "0x1C954E8fe737F99f68Fa1CCda3e51ebDB291948C", + "color": "#3ccca0", + "decimals": 18, + "symbol": "KNC", + "type": "token", + "visible": false, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "d71655d1-8131-4aed-bff0-ee8a849065b4", + "name": "Lido DAO", + "chainId": 137, + "active": true, + "address": "0xC3C7d422809852031b44ab29EEC9F1EfF2A58756", + "color": "#55aadc", + "decimals": 18, + "symbol": "LDO", + "type": "token", + "visible": true, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "87e706fe-0900-4a69-94b6-2f3f9cad73ce", + "name": "Lucidao", + "chainId": 137, + "active": true, + "address": "0xc2A45FE7d40bCAc8369371B08419DDAFd3131b4a", + "color": "#CCCCCC", + "decimals": 18, + "symbol": "LCD", + "type": "token", + "visible": false, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "c5129108-4b4d-4aa2-b75b-9d4348bd1678", + "name": "MAI", + "chainId": 137, + "active": true, + "address": "0xa3Fa99A148fA48D14Ed51d610c367C61876997F1", + "color": "#da3334", + "decimals": 18, + "symbol": "MAI", + "type": "token", + "visible": true, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "ed1afd08-8f3b-4a88-8bd4-83b763dd98fd", + "name": "Mask Network", + "chainId": 137, + "active": true, + "address": "0x2B9E7ccDF0F4e5B24757c1E1a80e311E34Cb10c7", + "color": "#2566da", + "decimals": 18, + "symbol": "MASK", + "type": "token", + "visible": true, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "8634b650-20fe-4f9e-8310-6672b38ea0ce", + "name": "MaticX", + "chainId": 137, + "active": true, + "address": "0xfa68FB4628DFF1028CFEc22b4162FCcd0d45efb6", + "color": "#000000", + "decimals": 18, + "symbol": "MaticX", + "type": "token", + "visible": false, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "7a4aea4e-4f6f-48c9-87b2-1c0169f270b0", + "name": "MIMO Parallel Governance Token (PoS)", + "chainId": 137, + "active": true, + "address": "0xADAC33f543267c4D59a8c299cF804c303BC3e4aC", + "color": "#5c3484", + "decimals": 18, + "symbol": "MIMO", + "type": "token", + "visible": false, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "8ce84b31-b530-4d2a-9a28-c95742827ed4", + "name": "MoonEdge", + "chainId": 137, + "active": true, + "address": "0x7E4c577ca35913af564ee2a24d882a4946Ec492B", + "color": "#381a6a", + "decimals": 18, + "symbol": "MOONED", + "type": "token", + "visible": true, + "allowSlot": 2, + "balanceSlot": 1 + }, + { + "id": "20979196-88df-4fd7-ba95-a8b412d9c1ff", + "name": "O3 Swap Token", + "chainId": 137, + "active": true, + "address": "0xEe9801669C6138E84bD50dEB500827b776777d28", + "color": "#22af7f", + "decimals": 18, + "symbol": "O3", + "type": "token", + "visible": false, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "bed0fc98-12c4-4530-8b50-79fb73d7e4d0", + "name": "Ocean Token", + "chainId": 137, + "active": true, + "address": "0x282d8efCe846A88B159800bd4130ad77443Fa1A1", + "color": "#141414", + "decimals": 18, + "symbol": "mOCEAN", + "type": "token", + "visible": true, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "85d42621-43a2-4189-930f-9b1ff0cf74f4", + "name": "Old Quickswap", + "chainId": 137, + "active": true, + "address": "0x831753DD7087CaC61aB5644b308642cc1c33Dc13", + "color": "#408ac9", + "decimals": 18, + "symbol": "oldQUICK", + "type": "token", + "visible": false, + "allowSlot": 1, + "balanceSlot": 2 + }, + { + "id": "aa743092-a507-4cbe-81a8-432d6a3a2a3c", + "name": "OM", + "chainId": 137, + "active": true, + "address": "0xC3Ec80343D2bae2F8E680FDADDe7C17E71E114ea", + "color": "#c91b5d", + "decimals": 18, + "symbol": "OM", + "type": "token", + "visible": true, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "03613bf0-19f1-42a7-913b-d6758c760f97", + "name": "Orbs", + "chainId": 137, + "active": true, + "address": "0x614389EaAE0A6821DC49062D56BDA3d9d45Fa2ff", + "color": "#50597f", + "decimals": 18, + "symbol": "ORBS", + "type": "token", + "visible": true, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "aef468a7-2c18-4ee8-85d3-59c4e41a7080", + "name": "pAUTO", + "chainId": 137, + "active": true, + "address": "0x7f426F6Dc648e50464a0392E60E1BB465a67E9cf", + "color": "#2d2dbc", + "decimals": 18, + "symbol": "pAUTO", + "type": "token", + "visible": false, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "24baf9c9-953e-4f2d-8859-b6c5b3c06217", + "name": "PAX Gold", + "chainId": 137, + "active": true, + "address": "0x553d3D295e0f695B9228246232eDF400ed3560B5", + "color": "#f8f8f8", + "decimals": 18, + "symbol": "PAXG", + "type": "token", + "visible": true, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "0382bb79-5383-4267-bf89-404e3453d39f", + "name": "PLOT", + "chainId": 137, + "active": true, + "address": "0xe82808eaA78339b06a691fd92E1Be79671cAd8D3", + "color": "#0c6b6c", + "decimals": 18, + "symbol": "PLOT", + "type": "token", + "visible": true, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "3d57e41a-8654-465a-ae6e-45cc9adaf54d", + "name": "PoolTogether", + "chainId": 137, + "active": true, + "address": "0x25788a1a171ec66Da6502f9975a15B609fF54CF6", + "color": "#6035c5", + "decimals": 18, + "symbol": "POOL", + "type": "token", + "visible": true, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "174920e4-f082-43d2-8484-569b9a390643", + "name": "PYR Token", + "chainId": 137, + "active": true, + "address": "0x430EF9263E76DAE63c84292C3409D61c598E9682", + "color": "#f59925", + "decimals": 18, + "symbol": "PYR", + "type": "token", + "visible": false, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "8bcdeda0-1a23-4cb4-83a1-0b4ccd8ad00c", + "name": "Qi Dao", + "chainId": 137, + "active": true, + "address": "0x580A84C73811E1839F75d86d75d88cCa0c241fF4", + "color": "#ff6b6b", + "decimals": 18, + "symbol": "QI", + "type": "token", + "visible": true, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "d35b7aaf-a2ff-44e0-a3df-cdc702ed71ba", + "name": "Quickswap", + "chainId": 137, + "active": true, + "address": "0xB5C064F955D8e7F38fE0460C556a72987494eE17", + "color": "#408ac9", + "decimals": 18, + "symbol": "QUICK", + "type": "token", + "visible": true, + "allowSlot": 1, + "balanceSlot": 2 + }, + { + "id": "f989dcf8-7254-4b02-869e-ba105339272b", + "name": "REVV", + "chainId": 137, + "active": true, + "address": "0x70c006878a5A50Ed185ac4C87d837633923De296", + "color": "#fc2b2b", + "decimals": 18, + "symbol": "REVV", + "type": "token", + "visible": false, + "allowSlot": 6, + "balanceSlot": 5 + }, + { + "id": "ba44052c-fe9a-47d4-8b12-4ea524808bcd", + "name": "Snook", + "chainId": 137, + "active": true, + "address": "0x689f8e5913C158fFB5Ac5aeb83b3C875F5d20309", + "color": "#0170b9", + "decimals": 18, + "symbol": "SNK", + "type": "token", + "visible": false, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "f590c2cc-b7f5-45a0-be0d-d75052fbffa5", + "name": "Solana", + "chainId": 137, + "active": true, + "address": "0x7DfF46370e9eA5f0Bad3C4E29711aD50062EA7A4", + "color": "#56377f", + "decimals": 18, + "symbol": "SOL", + "type": "token", + "visible": true, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "2bb04b67-dfed-40eb-921c-f1e36c2ea06a", + "name": "SportX", + "chainId": 137, + "active": true, + "address": "0x840195888Db4D6A99ED9F73FcD3B225Bb3cB1A79", + "color": "#31a983", + "decimals": 18, + "symbol": "SX", + "type": "token", + "visible": false, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "35b57015-712d-499d-9bce-4f4dd3e29d3c", + "name": "Stader", + "chainId": 137, + "active": true, + "address": "0x1d734A02eF1e1f5886e66b0673b71Af5B53ffA94", + "color": "#000000", + "decimals": 18, + "symbol": "SD", + "type": "token", + "visible": false, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "3ee2c29f-3fae-40b2-907b-8a338bbbc1c4", + "name": "StaFi", + "chainId": 137, + "active": true, + "address": "0x7A7B94F18EF6AD056CDa648588181CDA84800f94", + "color": "#0496ad", + "decimals": 18, + "symbol": "FIS", + "type": "token", + "visible": false, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "0dcb8f08-485e-46e9-bdb7-3ae52e5244e6", + "name": "StaFi rMATIC", + "chainId": 137, + "active": true, + "address": "0x9f28e2455f9FFcFac9EBD6084853417362bc5dBb", + "color": "#CCCCCC", + "decimals": 18, + "symbol": "rMATIC", + "type": "token", + "visible": false, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "819b9d1d-4885-4282-8f16-2be871c859c2", + "name": "Stake DAO Token (PoS)", + "chainId": 137, + "active": true, + "address": "0x361A5a4993493cE00f61C32d4EcCA5512b82CE90", + "color": "#000000", + "decimals": 18, + "symbol": "SDT", + "type": "token", + "visible": false, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "d21331f3-3db3-40e9-b972-ffddc5a6a795", + "name": "Staked MATIC (PoS)", + "chainId": 137, + "active": true, + "address": "0x3A58a54C066FdC0f2D55FC9C89F0415C92eBf3C4", + "color": "#000000", + "decimals": 18, + "symbol": "stMATIC", + "type": "token", + "visible": false, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "9b921908-dce7-4f32-b0ed-f04749abfcc2", + "name": "Stargate", + "chainId": 137, + "active": true, + "address": "0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590", + "color": "#000000", + "decimals": 18, + "symbol": "STG", + "type": "token", + "visible": false, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "0cd75561-8f74-471b-8ae4-256143fdbaff", + "name": "Sushi", + "chainId": 137, + "active": true, + "address": "0x0b3F868E0BE5597D5DB7fEB59E1CADBb0fdDa50a", + "color": "#7a8eb4", + "decimals": 18, + "symbol": "SUSHI", + "type": "token", + "visible": false, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "d8d311f1-f3b4-4d67-8a99-b9f42ec49c17", + "name": "Telcoin", + "chainId": 137, + "active": true, + "address": "0xdF7837DE1F2Fa4631D716CF2502f8b230F1dcc32", + "color": "#04c3fc", + "decimals": 2, + "symbol": "TEL", + "type": "token", + "visible": true, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "327372e5-b7ae-405b-9c4e-0c0989dc91d6", + "name": "The Graph", + "chainId": 137, + "active": true, + "address": "0x5fe2B58c013d7601147DcdD68C143A77499f5531", + "color": "#32297c", + "decimals": 18, + "symbol": "GRT", + "type": "token", + "visible": true, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "c1dd5c79-bd77-486c-afa4-a161c90d5464", + "name": "The Sandbox", + "chainId": 137, + "active": true, + "address": "0xBbba073C31bF03b8ACf7c28EF0738DeCF3695683", + "color": "#04acec", + "decimals": 18, + "symbol": "SAND", + "type": "token", + "visible": true, + "allowSlot": 6, + "balanceSlot": 5 + }, + { + "id": "d6c476a2-7322-439b-99ab-479b8b6d7d53", + "name": "Toucan Protocol: Base Carbon Tonne", + "chainId": 137, + "active": true, + "address": "0x2F800Db0fdb5223b3C3f354886d907A671414A7F", + "color": "#000000", + "decimals": 18, + "symbol": "BCT", + "type": "token", + "visible": false, + "allowSlot": 52, + "balanceSlot": 51 + }, + { + "id": "759f1f40-ff73-4079-9841-79eb656e19f1", + "name": "TrueUSD (PoS)", + "chainId": 137, + "active": true, + "address": "0x2e1AD108fF1D8C782fcBbB89AAd783aC49586756", + "color": "#000000", + "decimals": 18, + "symbol": "TUSD", + "type": "token", + "visible": true, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "72c7d69d-7bef-47e5-8907-4c4c6f0bd797", + "name": "Uniswap", + "chainId": 137, + "active": true, + "address": "0xb33EaAd8d922B1083446DC23f610c2567fB5180f", + "color": "#da5a94", + "decimals": 18, + "symbol": "UNI", + "type": "token", + "visible": true, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "e251ecf6-48c2-4538-afcd-fbb92424054d", + "name": "USD Coin (Bridged)", + "chainId": 137, + "active": true, + "address": "0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174", + "color": "#2775ca", + "decimals": 6, + "symbol": "USDC.e", + "type": "token", + "visible": false, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "33b90e57-ded7-4da9-92c9-6d3ed0f1c53d", + "active": true, + "address": "0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359", + "color": "#2775ca", + "decimals": 6, + "name": "USD Coin (Native)", + "chainId": 137, + "symbol": "USDC", + "type": "token", + "visible": false, + "allowSlot": 10, + "balanceSlot": 9 + }, + { + "id": "dfe40dda-5c96-4ff3-b773-386f1ca0868d", + "name": "USDT", + "chainId": 137, + "active": true, + "address": "0xc2132D05D31c914a87C6611C10748AEb04B58e8F", + "color": "#54ae93", + "decimals": 6, + "symbol": "USDT", + "type": "token", + "visible": false, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "6f4ff81c-bb37-4789-bc5f-df09af4da855", + "name": "VOXEL Token", + "chainId": 137, + "active": true, + "address": "0xd0258a3fD00f38aa8090dfee343f10A9D4d30D3F", + "color": "#CCCCCC", + "decimals": 18, + "symbol": "VOXEL", + "type": "token", + "visible": false, + "allowSlot": 2, + "balanceSlot": 1 + }, + { + "id": "01bbcecb-0122-4e07-b47d-296ff88fce3b", + "name": "WeFi", + "chainId": 137, + "active": true, + "address": "0xfFA188493C15DfAf2C206c97D8633377847b6a52", + "color": "#CCCCCC", + "decimals": 18, + "symbol": "WEFI", + "type": "token", + "visible": false, + "allowSlot": 9, + "balanceSlot": 8 + }, + { + "id": "1872923c-808d-4299-a38c-9fd59da69274", + "name": "Wombat", + "chainId": 137, + "active": true, + "address": "0x0C9c7712C83B3C70e7c5E11100D33D9401BdF9dd", + "color": "#CCCCCC", + "decimals": 18, + "symbol": "WOMBAT", + "type": "token", + "visible": false, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "41f30848-c9ae-47a7-91ab-97e722144913", + "name": "Wootrade Network", + "chainId": 137, + "active": true, + "address": "0x1B815d120B3eF02039Ee11dC2d33DE7aA4a8C603", + "color": "#000000", + "decimals": 18, + "symbol": "WOO", + "type": "token", + "visible": false, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "c3dd0031-73e1-4f24-b543-bfd3d7a0a683", + "name": "Wrapped amDAI", + "chainId": 137, + "active": true, + "address": "0xEE029120c72b0607344f35B17cdD90025e647B00", + "color": "#CCCCCC", + "decimals": 18, + "symbol": "amDAI", + "type": "token", + "visible": false, + "allowSlot": 53, + "balanceSlot": 52 + }, + { + "id": "8f2b13d0-f046-4894-9daa-ac573cfce5b9", + "name": "Wrapped amUSDC", + "chainId": 137, + "active": true, + "address": "0x221836a597948Dce8F3568E044fF123108aCc42A", + "color": "#CCCCCC", + "decimals": 6, + "symbol": "amUSDC", + "type": "token", + "visible": false, + "allowSlot": 53, + "balanceSlot": 52 + }, + { + "id": "24158fd6-b290-4f14-ac20-c778b3e0e997", + "name": "Wrapped amUSDT", + "chainId": 137, + "active": true, + "address": "0x19C60a251e525fa88Cd6f3768416a8024e98fC19", + "color": "#CCCCCC", + "decimals": 6, + "symbol": "amUSDT", + "type": "token", + "visible": false, + "allowSlot": 53, + "balanceSlot": 52 + }, + { + "id": "7eecd38c-6ec4-4032-b1bd-bbd1bb82404f", + "name": "Wrapped Bitcoin", + "chainId": 137, + "active": true, + "address": "0x1BFD67037B42Cf73acF2047067bd4F2C47D9BfD6", + "color": "#342743", + "decimals": 8, + "symbol": "WBTC", + "type": "token", + "visible": true, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "88f2647c-740e-4bbb-baed-c809302fea79", + "name": "Wrapped Ether", + "chainId": 137, + "active": true, + "address": "0x7ceB23fD6bC0adD59E62ac25578270cFf1b9f619", + "color": "#737475", + "decimals": 18, + "symbol": "WETH", + "type": "token", + "visible": true, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "79c1ac81-f9b8-45d2-bf2e-5496d0c75814", + "name": "Wrapped Liquid Stake Ether", + "chainId": 137, + "active": true, + "address": "0x03b54A6e9a984069379fae1a4fC4dBAE93B3bCCD", + "color": "#1cbc94", + "decimals": 18, + "symbol": "wstETH", + "type": "token", + "visible": false, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "98b8ff51-465c-4172-beb4-42810ec7df68", + "name": "Wrapped LUNA Token", + "chainId": 137, + "active": true, + "address": "0x24834BBEc7E39ef42f4a75EAF8E5B6486d3F0e57", + "color": "#df6a2f", + "decimals": 18, + "symbol": "LUNA", + "type": "token", + "visible": false, + "allowSlot": 1, + "balanceSlot": 0 + }, + { + "id": "d604439e-d464-4df5-bed1-66815b348cab", + "name": "Wrapped Matic", + "chainId": 137, + "active": true, + "address": "0x0d500B1d8E8eF31E21C99d1Db9A6444d3ADf1270", + "color": "#468af0", + "decimals": 18, + "symbol": "WMATIC", + "type": "token", + "visible": false, + "allowSlot": 4, + "balanceSlot": 3 + }, + { + "id": "20527b4c-0e70-4958-9e9a-35b12d0d5168", + "name": "Wrapped USDR", + "chainId": 137, + "active": true, + "address": "0xAF0D9D65fC54de245cdA37af3d18cbEc860A4D4b", + "color": "#2c5cfb", + "decimals": 9, + "symbol": "wUSDR", + "type": "token", + "visible": false, + "allowSlot": 152, + "balanceSlot": 151 + }, + { + "id": "fdaa23f1-d85e-494f-9370-671a5b045160", + "name": "YEL Token", + "chainId": 137, + "active": true, + "address": "0xD3b71117E6C1558c1553305b44988cd944e97300", + "color": "#671499", + "decimals": 18, + "symbol": "YEL", + "type": "token", + "visible": false, + "allowSlot": 1, + "balanceSlot": 0 + } +]